diff --git a/src/freedombone-app-peertube b/src/freedombone-app-peertube
index 0c73fc788ffeef1d011fed5a60e45f70b15cdaed..4efbc9c2a9e9b475bec95d386e7abe568edd9c05 100755
--- a/src/freedombone-app-peertube
+++ b/src/freedombone-app-peertube
@@ -318,9 +318,9 @@ function peertube_import_videos {
     dialog --backtitle $"Freedombone Control Panel" \
            --title $"Import Videos from legacy sites" \
            --form $"Enter a channel of video URL for YouTube/Vimeo/Dailymotion" 10 75 4 \
-           $"Username:" 1 1 "$MY_USERNAME" 1 28 16 15 \
-           $"Password:" 2 1 "" 2 28 40 10000 \
-           $"Video/Channel URL:" 3 1 "" 3 28 40 10000 \
+           $"Username:" 1 1 "$MY_USERNAME" 1 22 16 15 \
+           $"Password:" 2 1 "" 2 22 50 10000 \
+           $"Video/Channel URL:" 3 1 "" 3 22 50 10000 \
            2> "$data2"
     sel=$?
     case $sel in
diff --git a/src/freedombone-utils-nodejs b/src/freedombone-utils-nodejs
index 3db83107dcdeb6b1a8c8d489a03c1af8b2fc6887..e24e2f21e4513ac5dd3af06fbc6517b0065248e6 100755
--- a/src/freedombone-utils-nodejs
+++ b/src/freedombone-utils-nodejs
@@ -231,10 +231,9 @@ function nodejs_setup_global_modules {
     if ! grep -q "NPM_CONFIG_PREFIX=" "$rootdir/root/.bashrc"; then
         echo "export NPM_CONFIG_PREFIX=/root/.npm-global" >> "$rootdir/root/.bashrc"
     fi
-    if [ ! "$rootdir" ]; then
-        export PATH=/root/.npm-global/bin:$PATH
-        export NPM_CONFIG_PREFIX=/root/.npm-global
-    fi
+    # shellcheck disable=SC2086
+    $mesh_install_nodejs_prefix export PATH=/root/.npm-global/bin:$PATH
+    $mesh_install_nodejs_prefix export NPM_CONFIG_PREFIX=/root/.npm-global
 }
 
 function remove_nodejs {