web/satellite: cant open bucket on name click bug fixed

https://github.com/storj/storj/issues/5467

Change-Id: I0c91167ddd1d01b15238dbebf10f49dc0cc6c340
This commit is contained in:
NickolaiYurchenko 2023-01-12 17:33:09 +02:00 committed by Nikolay Yurchenko
parent 583ea51fb1
commit 2e28e59a5e

View File

@ -53,8 +53,8 @@ const props = withDefaults(defineProps<{
item?: object;
onClick?: (data?: unknown) => void;
// event for the first cell of this item.
onPrimaryClick?: (data?: unknown) => void;
hideGuide?: () => void;
onPrimaryClick: (data?: unknown) => void;
}>(), {
selectDisabled: false,
selected: false,
@ -63,7 +63,6 @@ const props = withDefaults(defineProps<{
tableType: 'none',
item: () => ({}),
onClick: () => {},
onPrimaryClick: () => {},
hideGuide: () => {},
});