Skip to content

Commit ca4d66a

Browse files
committed
Fix linting
1 parent 12520da commit ca4d66a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

includes/dialog_functions.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,8 @@ _parse_dialog_options_() {
230230
--extra-label:*) _pdo_opts_+=("--extra-button" "--extra-label" "${1#*:}") ;;
231231
--help-label:*) _pdo_opts_+=("--help-button" "--help-label" "${1#*:}") ;;
232232
--ok-label:* | --yes-label:* | --no-label:* | --cancel-label:* | --exit-label:*)
233-
_pdo_opts_+=("${1%:*}" "${1#*:}") ;;
233+
_pdo_opts_+=("${1%:*}" "${1#*:}")
234+
;;
234235
--default-item:*) _pdo_opts_+=("--default-item" "${1#*:}") ;;
235236
--item-help) _pdo_opts_+=("${1}") ;;
236237
--*) _pdo_opts_+=("${1}") ;;

0 commit comments

Comments
 (0)