Skip to content

Commit

Permalink
fix: remove lang_de keynode
Browse files Browse the repository at this point in the history
  • Loading branch information
MksmOrlov committed Nov 3, 2022
1 parent 5737ca7 commit 1987d9c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/js/Utils/sc_keynodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ ScKeynodes.prototype.init = async function () {
'languages',
'lang_ru',
'lang_en',
'lang_de',

'nrel_format',
'nrel_mimetype',
Expand All @@ -58,7 +57,7 @@ ScKeynodes.prototype.resolveKeynode = async function (sys_idtf, property) {
sys_idtf = [sys_idtf];
}
let request = sys_idtf.map(x => {
return { id: x, type: sc.ScType.Unknown }
return { id: x, type: sc.ScType.NodeConst }
});
let result = await this.scClient.resolveKeynodes(request);
sys_idtf.forEach(x => {
Expand Down

0 comments on commit 1987d9c

Please sign in to comment.