Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion grafana/rmf-app/src/components/Root/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ export class Root extends PureComponent<Props, State> {
</Button>
<Space layout={'inline'} h={2} />
<Space layout={'block'} v={2} />
<FileDropzone options={{accept:{"application/octet-stream": [".po"]}}} onLoad={async (result) => {
<FileDropzone options={{accept:{"application/octet-stream": [".po"]}, multiple: false}} onLoad={async (result) => {
const nameUid = await this.prepareDatasources(result);
const dashboard = parsePmImportFileToDashboard(result, nameUid);
await this.importDashboard(PM_FOLDER_UID, OperCode.Install, [dashboard]);
Expand Down
Loading