소스 검색

Merge pull request #2133 from gitstart/FLOWY-OSS-5

fix: Replace `Shortcuts` icon in the help menu option to fix misalignment
Alex Wallen 2 년 전
부모
커밋
fc004c319b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart

+ 1 - 1
frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart

@@ -203,7 +203,7 @@ extension QuestionBubbleExtension on BubbleAction {
       case BubbleAction.debug:
         return '🐛';
       case BubbleAction.shortcuts:
-        return '⌨️';
+        return '📋';
     }
   }
 }