提交 440882cd 编写于 作者: B break60 提交者: lenboo

Fix unfiltered jar files in resource directory and UDF upload resource parameters (#3008)

* Change email to default

* Fix unfiltered jar files in resource directory and UDF upload resource parameters
上级 0c85a2f0
...@@ -216,6 +216,11 @@ ...@@ -216,6 +216,11 @@
this.diGuiTree(item) this.diGuiTree(item)
this.diGuiTree(this.filterJarFile(item1)) this.diGuiTree(this.filterJarFile(item1))
item1 = item1.filter( item => {
if(item.dirctory) {
return item
}
});
this.udfResourceList = item this.udfResourceList = item
this.udfResourceDirList = item1 this.udfResourceDirList = item1
resolve() resolve()
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
<template> <template>
<div class="update-udf-model"> <div class="update-udf-model">
<div class="update-udf-box"> <div class="update-udf-box">
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
v-model="udfName" v-model="udfName"
:disabled="progress !== 0" :disabled="progress !== 0"
style="width: 535px" style="width: 535px"
:placeholder="$t('Please enter resource name')" :placeholder="$t('Please enter name')"
autocomplete="off"> autocomplete="off">
</x-input> </x-input>
<div class="p1" style="position: absolute;"> <div class="p1" style="position: absolute;">
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
_verifyName () { _verifyName () {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
this.store.dispatch('resource/resourceVerifyName', { this.store.dispatch('resource/resourceVerifyName', {
fullName: '/'+this.udfName, fullName: '/'+this.currentDir+'/'+this.udfName,
type: 'UDF' type: 'UDF'
}).then(res => { }).then(res => {
resolve() resolve()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册