mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Update dependency typescript to v5.3.3 (#81096)
* Update dependency typescript to v5.3.3 * update ApiKeysPage * fix remaining conflict in lockfile * update sdk --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
This commit is contained in:
@@ -113,18 +113,10 @@ export class ApiKeysPageUnconnected extends PureComponent<Props, State> {
|
||||
migrationResult,
|
||||
} = this.props;
|
||||
|
||||
if (!hasFetched) {
|
||||
return (
|
||||
<Page {...defaultPageProps}>
|
||||
<Page.Contents isLoading={true}>{}</Page.Contents>
|
||||
</Page>
|
||||
);
|
||||
}
|
||||
|
||||
const showTable = apiKeysCount > 0;
|
||||
return (
|
||||
<Page {...defaultPageProps}>
|
||||
<Page.Contents isLoading={false}>
|
||||
<Page.Contents isLoading={!hasFetched}>
|
||||
<>
|
||||
<MigrateToServiceAccountsCard onMigrate={this.onMigrateApiKeys} apikeysCount={apiKeysCount} />
|
||||
{showTable ? (
|
||||
|
||||
Reference in New Issue
Block a user