This is an automated email from the ASF dual-hosted git repository.

kgabryje pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new e12140beb65 fix: Warning toast copy in folders editor (#38099)
e12140beb65 is described below

commit e12140beb654bdeae9b0d01db148aa96c7f12b78
Author: Kamil Gabryjelski <[email protected]>
AuthorDate: Thu Feb 19 18:22:22 2026 +0100

    fix: Warning toast copy in folders editor (#38099)
---
 .../src/components/Datasource/FoldersEditor/hooks/useDragHandlers.ts  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/superset-frontend/src/components/Datasource/FoldersEditor/hooks/useDragHandlers.ts
 
b/superset-frontend/src/components/Datasource/FoldersEditor/hooks/useDragHandlers.ts
index 9da07b8a048..f6d788b3d40 100644
--- 
a/superset-frontend/src/components/Datasource/FoldersEditor/hooks/useDragHandlers.ts
+++ 
b/superset-frontend/src/components/Datasource/FoldersEditor/hooks/useDragHandlers.ts
@@ -332,14 +332,14 @@ export function useDragHandlers({
             isDefaultMetricsFolder &&
             draggedItem.type === FoldersEditorItemType.Column
           ) {
-            addWarningToast(t('This folder only accepts metrics'));
+            addWarningToast(t('This folder only supports metrics'));
             return;
           }
           if (
             isDefaultColumnsFolder &&
             draggedItem.type === FoldersEditorItemType.Metric
           ) {
-            addWarningToast(t('This folder only accepts columns'));
+            addWarningToast(t('This folder only supports columns'));
             return;
           }
         }

Reply via email to