Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ui for russian lang #1047

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const BaseTrashPage = () => {
tableColumns.push({
accessorKey: 'id',
header: t('actions.title'),
size: 80,
size: 140,
cell: ({ row }) => {
const trashId = row.getValue<string>('id');
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ export const SpaceTrashPage = () => {
key={value}
variant={resourceType === value ? 'default' : 'ghost'}
size="sm"
className="w-16"
onClick={() =>
handleResourceTypeChange(value as ResourceType.Space | ResourceType.Base)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export const ViewListItem: React.FC<IProps> = ({ view, removable, isActive }) =>
onClick={() => {
setIsEditing(true);
}}
className="flex justify-start"
className="flex justify-start text-wrap"
>
<Pencil className="size-3" />
{t('view.action.rename')}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,31 +21,31 @@ export const SettingDialog = () => {
<Dialog open={open} onOpenChange={setOpen}>
<DialogContent className="h-5/6 max-h-[800px] max-w-6xl">
<Tabs defaultValue="profile" className="flex min-h-[40rem] gap-4 pt-4">
<TabsList className="grid w-36 gap-2 bg-inherit text-left">
<TabsList className="grid w-52 gap-2 bg-inherit text-left">
<TabsTrigger
value="profile"
className="w-36 justify-start gap-2 font-normal data-[state=active]:bg-muted data-[state=active]:font-medium"
className="w-52 justify-start gap-2 font-normal data-[state=active]:bg-muted data-[state=active]:font-medium text-wrap"
>
<UserEdit className="shrink-0" />
{t('settings.account.tab')}
</TabsTrigger>
<TabsTrigger
value="system"
className="w-36 justify-start gap-2 font-normal data-[state=active]:bg-muted data-[state=active]:font-medium"
className="w-52 justify-start gap-2 font-normal data-[state=active]:bg-muted data-[state=active]:font-medium text-wrap"
>
<Settings className="shrink-0" />
{t('settings.setting.title')}
</TabsTrigger>
<TabsTrigger
value="notifications"
className="w-36 justify-start gap-2 font-normal data-[state=active]:bg-muted data-[state=active]:font-medium"
className="w-52 justify-start gap-2 font-normal data-[state=active]:bg-muted data-[state=active]:font-medium text-wrap"
>
<Bell className="shrink-0" />
{t('settings.notify.title')}
</TabsTrigger>
<TabsTrigger
value="integration"
className="w-36 justify-start gap-2 font-normal data-[state=active]:bg-muted data-[state=active]:font-medium"
className="w-52 justify-start gap-2 font-normal data-[state=active]:bg-muted data-[state=active]:font-medium text-wrap"
>
<Link className="shrink-0" />
{t('settings.integration.title')}
Expand Down