Skip to content

Commit

Permalink
no more ebal (
Browse files Browse the repository at this point in the history
  • Loading branch information
Andcool-Systems committed Jan 8, 2025
1 parent 0b6fe5a commit b033cf8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/app/modules/components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const Search = ({
onChange={(n, _) => onChangeSort(n.value)}
value={options_sortir.find(i => i.value === sort)}
isSearchable={false}
instanceId='select-ebal-1'
instanceId='select-1'
/>
</div>

Expand All @@ -119,7 +119,7 @@ export const Search = ({
isSearchable={false}
onChange={(n, _) => onChangeTake(n.value)}
value={options_take.find(i => i.value === take)}
instanceId='select-ebal-2'
instanceId='select-2'
/>
</div>

Expand Down
6 changes: 3 additions & 3 deletions src/app/workshop/[id]/client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export default function Home({ data, referrer }: { data: Interfaces.Bandage, ref
classNamePrefix='react-select'
isSearchable={false}
onChange={(n, _) => setPose(n.value)}
instanceId='select-ebal-1'
instanceId='select-1'
formatOptionLabel={nick_value => nick_value.label} />
<button className={style.skin_load} onClick={() => client.current?.download()}>
<IconDownload
Expand Down Expand Up @@ -320,15 +320,15 @@ export default function Home({ data, referrer }: { data: Interfaces.Bandage, ref
className={`react-select-container`}
classNamePrefix="react-select"
isSearchable={false}
instanceId='select-ebal-2'
instanceId='select-2'
onChange={(n, _) => client.current?.setParams({ body_part: n.value })} />
<Select
options={layers}
defaultValue={layers[0]}
className={`react-select-container`}
classNamePrefix="react-select"
isSearchable={false}
instanceId='select-ebal-3'
instanceId='select-3'
onChange={(n, _) => client.current?.setParams({ layers: n.value })} />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/workshop/[id]/components/edit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const EditElement = ({
className={`react-select-container`}
classNamePrefix="react-select"
isSearchable={false}
instanceId='select-ebal-1'
instanceId='select-1'
onChange={(n, _) => setAccessLevel(n.value)}
/>
<div className={style.check_notification} style={{
Expand Down
2 changes: 1 addition & 1 deletion src/app/workshop/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function Home() {
classNamePrefix="react-select"
isSearchable={false}
onChange={(n, _) => setPose(n.value)}
instanceId='select-ebal-1'
instanceId='select-1'
formatOptionLabel={(nick_value) => nick_value.label}
/>
</div>
Expand Down

0 comments on commit b033cf8

Please sign in to comment.