Skip to content

Commit

Permalink
Fix AT huids
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Kudinov committed Aug 15, 2024
1 parent b41ff9a commit a9a20f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/app/modules/bot-command/UuidInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const UuidInput: FC<UuidInputProps> = ({ id, label, onChange }) => {
<>
{label}
{uuids.map((text, idx) => (
<Input key={idx} id={`${id}{idx}`} value={text} onChange={handleChange(idx)} />
<Input key={idx} id={`huid${idx + 1}`} value={text} onChange={handleChange(idx)} />
))}
<Button id="add" icon="add" onClick={addUuid} title="HUID" />
<br />
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/modules/toast/toast.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class ToastStore {
const toastOptions = {
theme: this.isDarkTheme ? 'dark' : 'light',
position: 'bottom-left' as ToastPosition,
autoClose: 3000,
autoClose: 6000,
}

toast.info(text, toastOptions)
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-feature-smartapp",
"version": "2.3.6",
"version": "2.3.7",
"description": "SmartApp with all features",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion frontend/smartapp-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"manifestVersion": "1.0.0",
"smartAppVersion": "",
"bundlePath": "",
"changeLog": "AT фикс пуша"
"changeLog": "AT фикс huids"
}

0 comments on commit a9a20f5

Please sign in to comment.