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,
|
||||
removeFromDashboardItem,
|
||||
{ type: 'divider' },
|
||||
drilldownItem,
|
||||
// drilldownItem,
|
||||
shareMenu,
|
||||
{ type: 'divider' },
|
||||
editWithAI,
|
||||
|
|
|
@ -47,7 +47,7 @@ export const MessageContainer = forwardRef<HTMLDivElement, MessageContainerProps
|
|||
) : (
|
||||
<BusterLoadingAvatar
|
||||
loading={!isStreamFinished && !isFinishedReasoning}
|
||||
variant={hasReasoningMessage ? 'default' : 'gray'}
|
||||
variant={hasReasoningMessage || isStreamFinished ? 'default' : 'gray'}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
@ -38,7 +38,7 @@ export const DashboardContainerHeaderButtons: React.FC<FileContainerButtonsProps
|
|||
|
||||
return (
|
||||
<FileButtonContainer>
|
||||
{isShareable && <FollowUpWithAssetButton dashboardId={dashboardId} />}
|
||||
{/* {isShareable && <FollowUpWithAssetButton dashboardId={dashboardId} />} */}
|
||||
<SaveToCollectionButton dashboardId={dashboardId} />
|
||||
{isEffectiveOwner && <ShareDashboardButton dashboardId={dashboardId} />}
|
||||
{isEditor && !isViewingOldVersion && <AddContentToDashboardButton />}
|
||||
|
|
|
@ -66,7 +66,7 @@ export const DashboardThreeDotMenu = React.memo(
|
|||
() =>
|
||||
[
|
||||
chatId && openFullScreenDashboard,
|
||||
isFilter && !isViewingOldVersion && filterDashboardMenu,
|
||||
// isFilter && !isViewingOldVersion && filterDashboardMenu,
|
||||
isEditor && !isViewingOldVersion && addContentToDashboardMenu,
|
||||
{ type: 'divider' },
|
||||
isEffectiveOwner && !isViewingOldVersion && shareMenu,
|
||||
|
|
|
@ -96,7 +96,7 @@ export const ThreeDotMenuButton = React.memo(
|
|||
() =>
|
||||
[
|
||||
chatId && openFullScreenMetric,
|
||||
drilldownItem,
|
||||
// drilldownItem,
|
||||
isOwnerEffective && !isViewingOldVersion && shareMenu,
|
||||
isEditor && !isViewingOldVersion && statusSelectMenu,
|
||||
{ type: 'divider' },
|
||||
|
|
Loading…
Reference in New Issue