Fix typo in changeset

Signed-off-by: Olivier Liechti <olivier.liechti@wasabi-tech.com>
This commit is contained in:
Olivier Liechti
2022-06-01 13:00:12 +02:00
parent 33ad22a309
commit 74dc3acb1a
@@ -31,16 +31,19 @@ import React, { useState } from 'react';
import { IconComponent } from '@backstage/core-plugin-api';
import { useEntityPermission } from '@backstage/plugin-catalog-react';
import { catalogEntityDeletePermission } from '@backstage/plugin-catalog-common';
import { BackstageTheme } from '@backstage/theme';
/** @public */
export type EntityContextMenuClassKey = 'button';
const useStyles = makeStyles(
() => ({
button: {
color: 'white',
},
}),
(theme: BackstageTheme) => {
return {
button: {
color: theme.palette.bursts.fontColor,
},
};
},
{ name: 'PluginCatalogEntityContextMenu' },
);