mirror of https://github.com/buster-so/buster.git
Merge pull request #632 from buster-so/dallin/minor-ui-tweaks-and-fixes
Hide filters for now
This commit is contained in:
commit
168da8a640
|
@ -64,7 +64,7 @@ const MetricItemCardThreeDotMenuPopover: React.FC<{
|
||||||
openChartItem,
|
openChartItem,
|
||||||
removeFromDashboardItem,
|
removeFromDashboardItem,
|
||||||
{ type: 'divider' },
|
{ type: 'divider' },
|
||||||
drilldownItem,
|
// drilldownItem,
|
||||||
shareMenu,
|
shareMenu,
|
||||||
{ type: 'divider' },
|
{ type: 'divider' },
|
||||||
editWithAI,
|
editWithAI,
|
||||||
|
|
|
@ -47,7 +47,7 @@ export const MessageContainer = forwardRef<HTMLDivElement, MessageContainerProps
|
||||||
) : (
|
) : (
|
||||||
<BusterLoadingAvatar
|
<BusterLoadingAvatar
|
||||||
loading={!isStreamFinished && !isFinishedReasoning}
|
loading={!isStreamFinished && !isFinishedReasoning}
|
||||||
variant={hasReasoningMessage ? 'default' : 'gray'}
|
variant={hasReasoningMessage || isStreamFinished ? 'default' : 'gray'}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -38,7 +38,7 @@ export const DashboardContainerHeaderButtons: React.FC<FileContainerButtonsProps
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FileButtonContainer>
|
<FileButtonContainer>
|
||||||
{isShareable && <FollowUpWithAssetButton dashboardId={dashboardId} />}
|
{/* {isShareable && <FollowUpWithAssetButton dashboardId={dashboardId} />} */}
|
||||||
<SaveToCollectionButton dashboardId={dashboardId} />
|
<SaveToCollectionButton dashboardId={dashboardId} />
|
||||||
{isEffectiveOwner && <ShareDashboardButton dashboardId={dashboardId} />}
|
{isEffectiveOwner && <ShareDashboardButton dashboardId={dashboardId} />}
|
||||||
{isEditor && !isViewingOldVersion && <AddContentToDashboardButton />}
|
{isEditor && !isViewingOldVersion && <AddContentToDashboardButton />}
|
||||||
|
|
|
@ -66,7 +66,7 @@ export const DashboardThreeDotMenu = React.memo(
|
||||||
() =>
|
() =>
|
||||||
[
|
[
|
||||||
chatId && openFullScreenDashboard,
|
chatId && openFullScreenDashboard,
|
||||||
isFilter && !isViewingOldVersion && filterDashboardMenu,
|
// isFilter && !isViewingOldVersion && filterDashboardMenu,
|
||||||
isEditor && !isViewingOldVersion && addContentToDashboardMenu,
|
isEditor && !isViewingOldVersion && addContentToDashboardMenu,
|
||||||
{ type: 'divider' },
|
{ type: 'divider' },
|
||||||
isEffectiveOwner && !isViewingOldVersion && shareMenu,
|
isEffectiveOwner && !isViewingOldVersion && shareMenu,
|
||||||
|
|
|
@ -96,7 +96,7 @@ export const ThreeDotMenuButton = React.memo(
|
||||||
() =>
|
() =>
|
||||||
[
|
[
|
||||||
chatId && openFullScreenMetric,
|
chatId && openFullScreenMetric,
|
||||||
drilldownItem,
|
// drilldownItem,
|
||||||
isOwnerEffective && !isViewingOldVersion && shareMenu,
|
isOwnerEffective && !isViewingOldVersion && shareMenu,
|
||||||
isEditor && !isViewingOldVersion && statusSelectMenu,
|
isEditor && !isViewingOldVersion && statusSelectMenu,
|
||||||
{ type: 'divider' },
|
{ type: 'divider' },
|
||||||
|
|
Loading…
Reference in New Issue