You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by so...@apache.org on 2022/03/23 06:59:02 UTC

[dolphinscheduler] branch dev updated: [Improve-9108][UI Next][V1.0.0-Alpha] Rectify the issue about having a few misspelled words in the resource management. (#9117)

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

songjian pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new aae328e  [Improve-9108][UI Next][V1.0.0-Alpha] Rectify the issue about having a few misspelled words in the resource management. (#9117)
aae328e is described below

commit aae328e3a13b675e553a4c81658baf80585aed1c
Author: calvin <ji...@163.com>
AuthorDate: Wed Mar 23 14:58:54 2022 +0800

    [Improve-9108][UI Next][V1.0.0-Alpha] Rectify the issue about having a few misspelled words in the resource management. (#9117)
---
 dolphinscheduler-ui-next/src/views/resource/file/index.tsx | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/dolphinscheduler-ui-next/src/views/resource/file/index.tsx b/dolphinscheduler-ui-next/src/views/resource/file/index.tsx
index eaebe58..cfbc0d9 100644
--- a/dolphinscheduler-ui-next/src/views/resource/file/index.tsx
+++ b/dolphinscheduler-ui-next/src/views/resource/file/index.tsx
@@ -66,7 +66,7 @@ export default defineComponent({
     const folderShowRef = ref(false)
     const uploadShowRef = ref(false)
     const renameShowRef = ref(false)
-    const serachRef = ref()
+    const searchRef = ref()
 
     const renameInfo = reactive({
       id: -1,
@@ -85,7 +85,7 @@ export default defineComponent({
       paginationReactive.page = page
       resourceListRef.value = getResourceListState(
         fileId.value,
-        serachRef.value,
+        searchRef.value,
         paginationReactive.page,
         paginationReactive.pageSize
       )
@@ -96,7 +96,7 @@ export default defineComponent({
       paginationReactive.pageSize = pageSize
       resourceListRef.value = getResourceListState(
         fileId.value,
-        serachRef.value,
+        searchRef.value,
         paginationReactive.page,
         paginationReactive.pageSize
       )
@@ -115,7 +115,7 @@ export default defineComponent({
     const handleConditions = () => {
       resourceListRef.value = getResourceListState(
         fileId.value,
-        serachRef.value
+        searchRef.value
       )
     }
 
@@ -147,7 +147,7 @@ export default defineComponent({
     const updateList = () => {
       resourceListRef.value = getResourceListState(
         fileId.value,
-        serachRef.value
+        searchRef.value
       )
     }
     const fileStore = useFileStore()
@@ -228,7 +228,7 @@ export default defineComponent({
 
     return {
       fileId,
-      serachRef,
+      searchRef,
       folderShowRef,
       uploadShowRef,
       renameShowRef,
@@ -292,7 +292,7 @@ export default defineComponent({
                 <div class={styles.list}>
                   <NInput
                     placeholder={t('resource.file.enter_keyword_tips')}
-                    v-model={[this.serachRef, 'value']}
+                    v-model={[this.searchRef, 'value']}
                   />
                 </div>
               </div>