fix incorrect identation (#124)

This commit is contained in:
Meliox 2025-09-07 01:26:14 +02:00 committed by GitHub
parent 9cf74c0614
commit f3903df64f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -502,11 +502,11 @@ generate_drive_header() {
local temp_js_file="/tmp/drive_header.js"
#region drive header heredoc
cat > "$temp_js_file" <<'EOF'
{
{
xtype: 'box',
colspan: 2,
html: gettext('Drive(s)'),
},
},
EOF
#endregion drive header heredoc
if [[ $? -ne 0 ]]; then
@ -612,11 +612,11 @@ add_visual_separator() {
#region visual spacing heredoc
cat > "$temp_js_file" <<'EOF'
{
{
xtype: 'box',
colspan: 2,
padding: '0 0 20 0',
},
},
EOF
#endregion visual spacing heredoc
if [[ $? -ne 0 ]]; then