This commit is contained in:
Meliox 2025-09-06 23:28:32 +02:00
parent 4d75d471fe
commit f6bcadfd5b

View File

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