Skip to content

Commit

Permalink
fix(apps): '' to ansible
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Jul 10, 2024
1 parent 37230c2 commit 6f2f1a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion util/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ func (conf *ConfigType) GenerateSecrets() {

func LookupDefaultApps() {
appCommands := map[string]string{
"": "ansible-playbook",
"ansible": "ansible-playbook",
"terraform": "terraform",
"tofu": "tofu",
"bash": "bash",
Expand Down
2 changes: 1 addition & 1 deletion web/src/views/Apps.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template xmlns:v-slot="http://www.w3.org/1999/XSL/Transform">
<div v-if="items != null">
<div v-if="items != null && isAppsLoaded">
<EditDialog
v-model="editDialog"
save-button-text="Save"
Expand Down

0 comments on commit 6f2f1a6

Please sign in to comment.