Merge pull request #4510 from SDA-SE/feat/move-repository

Remove the "Move repository" menu entry from the catalog page, as it's just a placeholder
This commit is contained in:
Ben Lambert
2021-02-12 15:25:53 +01:00
committed by GitHub
2 changed files with 5 additions and 7 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': patch
---
Remove the "Move repository" menu entry from the catalog page, as it's just a placeholder.
@@ -25,7 +25,6 @@ import {
import { makeStyles } from '@material-ui/core/styles';
import Cancel from '@material-ui/icons/Cancel';
import MoreVert from '@material-ui/icons/MoreVert';
import SwapHoriz from '@material-ui/icons/SwapHoriz';
import React, { useState } from 'react';
// TODO(freben): It should probably instead be the case that Header sets the theme text color to white inside itself unconditionally instead
@@ -82,12 +81,6 @@ export const EntityContextMenu = ({ onUnregisterEntity }: Props) => {
</ListItemIcon>
<Typography variant="inherit">Unregister entity</Typography>
</MenuItem>
<MenuItem>
<ListItemIcon>
<SwapHoriz fontSize="small" />
</ListItemIcon>
<Typography variant="inherit">Move repository</Typography>
</MenuItem>
</MenuList>
</Popover>
</>