fix: Full compability on macos (#2)

* fix: Make first macos select work

* fix: Inline emjoys
This commit is contained in:
Timo Reymann
2023-02-17 12:50:24 +01:00
committed by GitHub
parent 487d7469b7
commit 9fa16c8295
4 changed files with 39 additions and 28 deletions
+2 -2
View File
@@ -41,13 +41,13 @@ validate_password() {
fi
}
# Password prompt
pass=$(with_validate 'password "Enter random password"' validate_password)
#pass=$(with_validate 'password "Enter random password"' validate_password)
# Checkbox
checked=$(checkbox "Select one or more items" "${options[@]}")
# text input with validation
text=$(with_validate 'input "Please enter something and confirm with enter"' validate_present)
#text=$(with_validate 'input "Please enter something and confirm with enter"' validate_present)
# Select
option=$(list "Select one item" "${options[@]}")