minor fix

This commit is contained in:
Torkel Ödegaard 2019-02-01 13:40:46 +01:00
parent 740e1a0540
commit 2a4b10a5c8
2 changed files with 9 additions and 4 deletions

View File

@ -50,7 +50,6 @@ export class LokiQueryEditor extends PureComponent<Props> {
const formatOptions: SelectOptionItem[] = [
{ label: 'Time Series', value: 'time_series' },
{ label: 'Table', value: 'table' },
{ label: 'Logs', value: 'logs' },
];
query.resultFormat = query.resultFormat || 'time_series';
@ -64,9 +63,14 @@ export class LokiQueryEditor extends PureComponent<Props> {
onQueryChange={this.onFieldChange}
onPressEnter={this.onRunQuery}
/>
<div className="gf-form">
<div className="gf-form-label">Format as</div>
<Select isSearchable={false} options={formatOptions} onChange={this.onFormatChanged} value={currentFormat} />
<div className="gf-form-inline">
<div className="gf-form">
<div className="gf-form-label">Format as</div>
<Select isSearchable={false} options={formatOptions} onChange={this.onFormatChanged} value={currentFormat} />
</div>
<div className="gf-form gf-form--grow">
<div className="gf-form-label gf-form-label--grow" />
</div>
</div>
</div>
);

View File

@ -19,6 +19,7 @@
border: $panel-border;
border-radius: $border-radius;
transition: all 0.3s;
line-height: $input-line-height;
}
.slate-query-field__wrapper--disabled {