Chore: Remove gf-form from PluginDashboards (#79300)

Remove gf-form in PluginDashboards
This commit is contained in:
Tobias Skarhed 2024-01-03 13:30:39 +01:00 committed by GitHub
parent 65a655cfc9
commit 9c9a055c3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,10 +102,6 @@ export class PluginDashboards extends PureComponent<Props, State> {
return <div>No dashboards are included with this plugin</div>;
}
return (
<div className="gf-form-group">
<DashboardsTable dashboards={dashboards} onImport={this.import} onRemove={this.remove} />
</div>
);
return <DashboardsTable dashboards={dashboards} onImport={this.import} onRemove={this.remove} />;
}
}