Browse Source

Fixed AddSongToPlaylist within SongActions width being too small

Owen Diffey 4 năm trước cách đây
mục cha
commit
f40259071e
2 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 4 0
      frontend/src/App.vue
  2. 2 1
      musare.sh

+ 4 - 0
frontend/src/App.vue

@@ -454,6 +454,10 @@ a {
 		display: inline-block;
 	}
 
+	.addToPlaylistDropdown .tippy-popper {
+		max-width: unset;
+	}
+
 	i,
 	a {
 		display: inline-block;

+ 2 - 1
musare.sh

@@ -143,6 +143,7 @@ if [[ -x "$(command -v docker)" && -x "$(command -v docker-compose)" ]]; then
         fix=""
         if [[ $2 == "fix" || $3 == "fix" || $2 == "--fix" || $3 == "--fix" ]]; then
             fix="--fix"
+            echo -e "${GREEN}Auto-fix enabled${NC}"
         fi
         case $2 in
             frontend)
@@ -151,7 +152,7 @@ if [[ -x "$(command -v docker)" && -x "$(command -v docker-compose)" ]]; then
             backend)
                 docker-compose exec backend npx eslint app/logic $fix
                 ;;
-            "")
+            ""|fix|--fix)
                 docker-compose exec frontend npx eslint app/src --ext .js,.vue $fix
                 docker-compose exec backend npx eslint app/logic $fix
                 ;;