Skip to content

Commit dbd7ee0

Browse files
authored
Merge pull request #93 from minjk-bl/devops
Fix Apps > File fileNavigation bug
2 parents 4f5638e + 84e2055 commit dbd7ee0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/file_io/fileio.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ define([
151151
fileExtension: "csv" // 확장자
152152
};
153153
this.fileResultState = {
154-
pathInputId : this.wrapSelector('#i1'),
155-
fileInputId : this.wrapSelector('#fileName')
154+
pathInputId : this.wrapSelector('#vp_fileRead #i0'),
155+
fileInputId : this.wrapSelector('#vp_fileRead #fileName')
156156
};
157157
}
158158

@@ -256,6 +256,11 @@ define([
256256
this.renderPage('Read');
257257
this.renderPage('Write');
258258

259+
// initialize fileResultState
260+
this.fileResultState = {
261+
...this.fileState['Read'].fileResultState
262+
};
263+
259264
this.bindEvent();
260265
};
261266

0 commit comments

Comments
 (0)