alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Update AdvancedContainer.tsx
author
Pouria Delfanazari
date
2 months ago
(May 6, 2026, 2:57 PM -0700)
commit
6cd28a5b
6cd28a5b2d6c03f3f286f896ea6cbd4aa12237cc
parent
eac6b363
eac6b363f6bb6c999cb91ac33a40069e9f706503
+12
-2
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
features
settings
containers
advancedContainer
AdvancedContainer.tsx
+12
-2
src/webapp/features/settings/containers/advancedContainer/AdvancedContainer.tsx
View file
Reviewed
···
98
98
<Card bg={'var(--mantine-color-gray-light)'} radius={'lg'} p="md">
99
99
<SimpleGrid cols={{ base: 1, sm: 2 }} spacing="md">
100
100
<Stack gap="xs">
101
101
-
<Badge variant="light" color="gray" size="sm" w="fit-content">
101
101
+
<Badge
102
102
+
variant={!settings.tinkerMode ? 'filled' : 'light'}
103
103
+
color={!settings.tinkerMode ? undefined : 'gray'}
104
104
+
size="sm"
105
105
+
w="fit-content"
106
106
+
>
102
107
Off
103
108
</Badge>
104
109
<Card
···
118
123
</Stack>
119
124
120
125
<Stack gap="xs">
121
121
-
<Badge variant="light" color="gray" size="sm" w="fit-content">
126
126
+
<Badge
127
127
+
variant={settings.tinkerMode ? 'filled' : 'light'}
128
128
+
color={settings.tinkerMode ? undefined : 'gray'}
129
129
+
size="sm"
130
130
+
w="fit-content"
131
131
+
>
122
132
On
123
133
</Badge>
124
134
<Card