Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions frontend/src/layouts/AppLayout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,6 @@ const AppLayout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
title: t('common.tutorial_other'),
onClick: toggleTutorialPanel,
},
{
href: 'theme-button',
type: 'button',
iconSvg: <ThemeIcon />,
onClick: onChangeSystemModeToggle,
},
{
type: 'button',
text: t('common.docs'),
Expand All @@ -172,6 +166,12 @@ const AppLayout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
external: true,
onClick: () => goToUrl(DISCORD_URL, true),
},
{
href: 'theme-button',
type: 'button',
iconSvg: <ThemeIcon />,
onClick: onChangeSystemModeToggle,
},
{
'data-class': 'user-menu',
type: 'menu-dropdown',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
"search_placeholder": "Find runs",
"empty_message_title": "No runs",
"empty_message_text": "No runs to display.",
"quickstart_message_text": "No runs to display. Create a new one using the guide",
"quickstart_message_text": "Check out the quickstart guide to get started with dstack",
"nomatch_message_title": "No matches",
"nomatch_message_text": "We can't find a match. Try to change project or clear filter",
"project": "Project",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Runs/List/hooks/useEmptyMessages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const useEmptyMessages = ({
title={t('projects.run.empty_message_title')}
message={t('projects.run.quickstart_message_text')}
>
<Button onClick={() => goToUrl(QUICK_START_URL, true)}>{t('common.quickstart')}</Button>
<Button variant="primary" external onClick={() => goToUrl(QUICK_START_URL, true)}>{t('common.quickstart')}</Button>
</ListEmptyMessage>
);
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Runs/List/hooks/useFilters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const useFilters = ({ localStorePrefix }: Args) => {
{
key: FilterKeys.USER_NAME,
operators: ['='],
propertyLabel: 'Username',
propertyLabel: 'User',
},
{
key: FilterKeys.ACTIVE,
Expand Down
Loading