-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pull] master from ledgersmb:master #15
base: master
Are you sure you want to change the base?
Conversation
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
26 similar comments
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
The rtd-bot is activated, but no .github/config.yml found in this repository. |
Found by Test::Dependencies v0.34
Use 'parent' over 'base' module
Move 'use' to top-level (and top of file)
Suppress Test2 UUID generation warning
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fix(deps): update dependency robot3 to v1 (master)
'login.pl' discards existing sessions and generates a new one, making the existing one inaccessible for logging out. 'erp.pl' requires a valid connection to the database, meaning that it requires a valid connection, but we want 'logout' to work when the session is expired (that is: discard the error that the session is expired and report success). To achieve that, the 'erp.pl', 'login.pl' and new 'logout.pl' workflow scripts each have their own middleware configuration.
…-entrypoints Separate entrypoints with and without sessions into separate scripts
* Support multiple sessions in a single browser, one per company This adds support for multiple logins in the same browser on a single server. The logins can be different companies with the same user, the same company with different users or different users with different companies. Closes #6352
/* Extract the separator and location into an array and if | ||
* needed add the separator. */ | ||
const re = /[^a-z]/gi; | ||
let position; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
} | ||
/* Extract the separator and location into an array and if | ||
* needed add the separator. */ | ||
const re = /[^a-z]/gi; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
this.domNode, | ||
"keyup", | ||
lang.hitch(this, function (e) { | ||
let value = domAttr.get(e.target, "value"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
// (unless there's a placeholder already) | ||
/* retrieve format to add it as the placeholder | ||
* (unless there's a placeholder already) */ | ||
params.constraints.formatLength ||= "short"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected an assignment or function call and instead saw an expression.
Expected an identifier and instead saw '='.
Missing semicolon.
"&" + | ||
domform.toQuery(this.domNode); | ||
} | ||
registry.byId("maindiv").load_form(url, options); | ||
window.__lsmbSubmitForm({ url, options }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
this.submit(); | ||
}, | ||
submit: function () { | ||
if (!this.validate()) { | ||
const widget = registry.getEnclosingWidget(this.clickedAction); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
cd.parameters.filename = "unknown"; | ||
} | ||
if (cd.type && cd.type === "attachment") { | ||
r.blob().then((c) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
} | ||
}).then((r) => { | ||
if (r.ok) { | ||
let rh = r.headers; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
event.stop(evt); | ||
return; | ||
} | ||
}).then((r) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}, | ||
function (err) { | ||
registry.byId("maindiv").report_request_error(err); | ||
let base = window.location.pathname.replace(/[^/]*$/, ""); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Remove unused module dependency (URI::Escape)
this.on("change", function (newValue) { | ||
if (self.item) { | ||
topic.publish(self.channel, self.item); | ||
this.on("change", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.inherited(arguments); | ||
if (this.channel) { | ||
this.own( | ||
topic.subscribe(this.channel, function (selected) { | ||
self.set("value", selected[self.searchAttr]); | ||
topic.subscribe(this.channel, (selected) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
// eslint-disable-next-line no-unused-vars | ||
this.on("change", function (newValue) { | ||
topic.publish(self.channel, self.item); | ||
this.on("change", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.inherited(arguments); | ||
if (this.channel) { | ||
this.own( | ||
topic.subscribe(this.channel, function (selected) { | ||
self.set("value", selected[self.searchAttr]); | ||
topic.subscribe(this.channel, (selected) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
let blob = await r.blob(); | ||
// Create a link pointing to the ObjectURL | ||
// containing the blob. | ||
const _data = window.URL.createObjectURL(blob); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
} | ||
); | ||
if (r.ok) { | ||
let blob = await r.blob(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
|
||
xhr(domattr.get(f, "action"), { | ||
let base = window.location.pathname.replace(/[^/]*$/, ""); | ||
let r = await fetch(base + domattr.get(f, "action"), { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
// eslint-disable-next-line no-unused-vars | ||
.then(function (response) { | ||
I.setFeedback(1, I.text("Password Changed")); | ||
.then(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
} | ||
fs.writeFileSync( | ||
path, | ||
`{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
/* eslint no-cond-assign:0 */ | ||
while ((v = vs.shift()) || v1) { | ||
if (v && v.includes("-")) { | ||
let [v01, v02] = v.split("-"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'destructuring binding' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
let v1 = ""; | ||
let v2 = ""; | ||
// Pack versions | ||
let vs = entry.versions.sort((a, b) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
var entry = earliest[c][browser]; | ||
let versions = []; | ||
let v1 = ""; | ||
let v2 = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
// eslint-disable-next-line no-unused-vars | ||
this.on("change", function (newValue) { | ||
topic.publish(self.channel, self.item); | ||
this.on("change", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.inherited(arguments); | ||
if (this.channel) { | ||
this.own( | ||
topic.subscribe(this.channel, function (selected) { | ||
self.set("value", selected[self.searchAttr]); | ||
topic.subscribe(this.channel, (selected) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
let blob = await r.blob(); | ||
// Create a link pointing to the ObjectURL | ||
// containing the blob. | ||
const _data = window.URL.createObjectURL(blob); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
} | ||
); | ||
if (r.ok) { | ||
let blob = await r.blob(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
|
||
xhr(domattr.get(f, "action"), { | ||
let base = window.location.pathname.replace(/[^/]*$/, ""); | ||
let r = await fetch(base + domattr.get(f, "action"), { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
// eslint-disable-next-line no-unused-vars | ||
.then(function (response) { | ||
I.setFeedback(1, I.text("Password Changed")); | ||
.then(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
} | ||
fs.writeFileSync( | ||
path, | ||
`{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
/* eslint no-cond-assign:0 */ | ||
while ((v = vs.shift()) || v1) { | ||
if (v && v.includes("-")) { | ||
let [v01, v02] = v.split("-"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'destructuring binding' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
let v1 = ""; | ||
let v2 = ""; | ||
// Pack versions | ||
let vs = entry.versions.sort((a, b) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
var entry = earliest[c][browser]; | ||
let versions = []; | ||
let v1 = ""; | ||
let v2 = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
// eslint-disable-next-line no-unused-vars | ||
this.on("change", function (newValue) { | ||
topic.publish(self.channel, self.item); | ||
this.on("change", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.inherited(arguments); | ||
if (this.channel) { | ||
this.own( | ||
topic.subscribe(this.channel, function (selected) { | ||
self.set("value", selected[self.searchAttr]); | ||
topic.subscribe(this.channel, (selected) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
let blob = await r.blob(); | ||
// Create a link pointing to the ObjectURL | ||
// containing the blob. | ||
const _data = window.URL.createObjectURL(blob); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
} | ||
); | ||
if (r.ok) { | ||
let blob = await r.blob(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
|
||
xhr(domattr.get(f, "action"), { | ||
let base = window.location.pathname.replace(/[^/]*$/, ""); | ||
let r = await fetch(base + domattr.get(f, "action"), { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
// eslint-disable-next-line no-unused-vars | ||
.then(function (response) { | ||
I.setFeedback(1, I.text("Password Changed")); | ||
.then(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
} | ||
fs.writeFileSync( | ||
path, | ||
`{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
/* eslint no-cond-assign:0 */ | ||
while ((v = vs.shift()) || v1) { | ||
if (v && v.includes("-")) { | ||
let [v01, v02] = v.split("-"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'destructuring binding' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
let v1 = ""; | ||
let v2 = ""; | ||
// Pack versions | ||
let vs = entry.versions.sort((a, b) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
var entry = earliest[c][browser]; | ||
let versions = []; | ||
let v1 = ""; | ||
let v2 = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
// eslint-disable-next-line no-unused-vars | ||
this.on("change", function (newValue) { | ||
topic.publish(self.channel, self.item); | ||
this.on("change", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.inherited(arguments); | ||
if (this.channel) { | ||
this.own( | ||
topic.subscribe(this.channel, function (selected) { | ||
self.set("value", selected[self.searchAttr]); | ||
topic.subscribe(this.channel, (selected) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
let blob = await r.blob(); | ||
// Create a link pointing to the ObjectURL | ||
// containing the blob. | ||
const _data = window.URL.createObjectURL(blob); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
} | ||
); | ||
if (r.ok) { | ||
let blob = await r.blob(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
|
||
xhr(domattr.get(f, "action"), { | ||
let base = window.location.pathname.replace(/[^/]*$/, ""); | ||
let r = await fetch(base + domattr.get(f, "action"), { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
// eslint-disable-next-line no-unused-vars | ||
.then(function (response) { | ||
I.setFeedback(1, I.text("Password Changed")); | ||
.then(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
} | ||
fs.writeFileSync( | ||
path, | ||
`{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
/* eslint no-cond-assign:0 */ | ||
while ((v = vs.shift()) || v1) { | ||
if (v && v.includes("-")) { | ||
let [v01, v02] = v.split("-"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'destructuring binding' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
let v1 = ""; | ||
let v2 = ""; | ||
// Pack versions | ||
let vs = entry.versions.sort((a, b) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
var entry = earliest[c][browser]; | ||
let versions = []; | ||
let v1 = ""; | ||
let v2 = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
for (var browser in earliest[c]) { | ||
var entry = earliest[c][browser]; | ||
let versions = []; | ||
let v1 = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
|
||
for (var browser in earliest[c]) { | ||
var entry = earliest[c][browser]; | ||
let versions = []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
}); | ||
let markdown = ""; | ||
/* eslint guard-for-in:0 */ | ||
for (const c of ["Desktop", "Mobile"]) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'for of' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
earliest[category][browser].versions.push(version); | ||
} | ||
}); | ||
let markdown = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
if (time) { | ||
let ts = timestamp.toDate(time); | ||
let month = "00" + (ts.getMonth() + 1); | ||
let year = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
|
||
function _isNextVersion(v1, v2) { | ||
let p1 = v1.match(/(\d+)(\.(\d+))?/); | ||
let p2 = v2.match(/(\d+)(\.(\d+))?/); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const timestamp = require("unix-timestamp"); | ||
|
||
function _isNextVersion(v1, v2) { | ||
let p1 = v1.match(/(\d+)(\.(\d+))?/); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const browserslist = require("browserslist"); | ||
const lite = require("caniuse-lite"); | ||
const packageJson = require("../package.json"); | ||
const timestamp = require("unix-timestamp"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const MarkdownInclude = require("markdown-include"); | ||
const browserslist = require("browserslist"); | ||
const lite = require("caniuse-lite"); | ||
const packageJson = require("../package.json"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
|
||
const MarkdownInclude = require("markdown-include"); | ||
const browserslist = require("browserslist"); | ||
const lite = require("caniuse-lite"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
/** @format */ | ||
|
||
const MarkdownInclude = require("markdown-include"); | ||
const browserslist = require("browserslist"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
@@ -0,0 +1,188 @@ | |||
/** @format */ | |||
|
|||
const MarkdownInclude = require("markdown-include"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
import { progressNotify, notify } from "@/machine-helpers.js"; | ||
|
||
function handleError(ctx, error) { | ||
return { ...ctx, error }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected '}' to match '{' from line 17 and instead saw '...'.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
Unnecessary semicolon.
Unrecoverable syntax error. (11% scanned).
state, | ||
transition | ||
} from "@/robot-vue"; | ||
import { progressNotify, notify } from "@/machine-helpers.js"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
@@ -0,0 +1,153 @@ | |||
/** @format */ | |||
|
|||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
transition( | ||
"done", | ||
"submitted", | ||
reduce((ctx, e) => ({ ...ctx, response: e.data })) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
Expected ')' and instead saw ':'.
Expected ')' and instead saw 'e'.
Expected ')' and instead saw '}'.
Expected ')' to match '(' from line 51 and instead saw 'ctx'.
Expected '}' to match '{' from line 39 and instead saw ')'.
Expected '}' to match '{' from line 51 and instead saw '...'.
} from "@/machine-helpers.js"; | ||
|
||
function submitUpload(ctx) { | ||
let data = new FormData(ctx.form.value); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
state, | ||
transition | ||
} from "@/robot-vue"; | ||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
@@ -0,0 +1,84 @@ | |||
/** @format */ | |||
|
|||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
if (dismiss) { | ||
dismiss(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrecoverable syntax error. (52% scanned).
/** @format */ | ||
|
||
const MarkdownInclude = require("markdown-include"); | ||
const browserslist = require("browserslist"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
@@ -0,0 +1,188 @@ | |||
/** @format */ | |||
|
|||
const MarkdownInclude = require("markdown-include"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
import { progressNotify, notify } from "@/machine-helpers.js"; | ||
|
||
function handleError(ctx, error) { | ||
return { ...ctx, error }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected '}' to match '{' from line 17 and instead saw '...'.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
Unnecessary semicolon.
Unrecoverable syntax error. (11% scanned).
state, | ||
transition | ||
} from "@/robot-vue"; | ||
import { progressNotify, notify } from "@/machine-helpers.js"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
@@ -0,0 +1,153 @@ | |||
/** @format */ | |||
|
|||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
transition( | ||
"done", | ||
"submitted", | ||
reduce((ctx, e) => ({ ...ctx, response: e.data })) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
Expected ')' and instead saw ':'.
Expected ')' and instead saw 'e'.
Expected ')' and instead saw '}'.
Expected ')' to match '(' from line 51 and instead saw 'ctx'.
Expected '}' to match '{' from line 39 and instead saw ')'.
Expected '}' to match '{' from line 51 and instead saw '...'.
} from "@/machine-helpers.js"; | ||
|
||
function submitUpload(ctx) { | ||
let data = new FormData(ctx.form.value); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
state, | ||
transition | ||
} from "@/robot-vue"; | ||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
@@ -0,0 +1,84 @@ | |||
/** @format */ | |||
|
|||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
if (dismiss) { | ||
dismiss(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrecoverable syntax error. (52% scanned).
/** @format */ | ||
|
||
const MarkdownInclude = require("markdown-include"); | ||
const browserslist = require("browserslist"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
@@ -0,0 +1,188 @@ | |||
/** @format */ | |||
|
|||
const MarkdownInclude = require("markdown-include"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
import { progressNotify, notify } from "@/machine-helpers.js"; | ||
|
||
function handleError(ctx, error) { | ||
return { ...ctx, error }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected '}' to match '{' from line 17 and instead saw '...'.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
Unnecessary semicolon.
Unrecoverable syntax error. (11% scanned).
state, | ||
transition | ||
} from "@/robot-vue"; | ||
import { progressNotify, notify } from "@/machine-helpers.js"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
@@ -0,0 +1,153 @@ | |||
/** @format */ | |||
|
|||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
transition( | ||
"done", | ||
"submitted", | ||
reduce((ctx, e) => ({ ...ctx, response: e.data })) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
Expected ')' and instead saw ':'.
Expected ')' and instead saw 'e'.
Expected ')' and instead saw '}'.
Expected ')' to match '(' from line 51 and instead saw 'ctx'.
Expected '}' to match '{' from line 39 and instead saw ')'.
Expected '}' to match '{' from line 51 and instead saw '...'.
} from "@/machine-helpers.js"; | ||
|
||
function submitUpload(ctx) { | ||
let data = new FormData(ctx.form.value); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
state, | ||
transition | ||
} from "@/robot-vue"; | ||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
@@ -0,0 +1,84 @@ | |||
/** @format */ | |||
|
|||
import { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
if (dismiss) { | ||
dismiss(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrecoverable syntax error. (52% scanned).
maindiv.setAttribute("data-lsmb-done", "true"); | ||
this._setFormFocus(); | ||
}, | ||
(e) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}); | ||
maindiv | ||
.querySelectorAll("a") | ||
.forEach((node) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
() => { | ||
registry | ||
.findWidgets(maindiv) | ||
.forEach((child) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.$nextTick(() => { | ||
let maindiv = document.getElementById("maindiv"); | ||
parser.parse(maindiv).then( | ||
() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this._cleanWidgets(); | ||
this.content = newContent; | ||
this.$nextTick(() => { | ||
let maindiv = document.getElementById("maindiv"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
this.notify({ | ||
title: options.doing || this.$t("Loading..."), | ||
type: "info", | ||
dismissReceiver: (cb) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}, | ||
methods: { | ||
async updateContent(tgt, options = {}) { | ||
let dismiss; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected '}' to match '{' from line 20 and instead saw 'let'.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
} | ||
}, | ||
methods: { | ||
async updateContent(tgt, options = {}) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected ':' and instead saw 'updateContent'.
Expected '}' to match '{' from line 35 and instead saw '{'.
}, | ||
props: ["uiURL"], | ||
watch: { | ||
uiURL(newURI) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'concise methods' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const { t } = useI18n(); | ||
const notify = inject("notify"); | ||
return { | ||
notify, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
maindiv.setAttribute("data-lsmb-done", "true"); | ||
this._setFormFocus(); | ||
}, | ||
(e) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}); | ||
maindiv | ||
.querySelectorAll("a") | ||
.forEach((node) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
() => { | ||
registry | ||
.findWidgets(maindiv) | ||
.forEach((child) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.$nextTick(() => { | ||
let maindiv = document.getElementById("maindiv"); | ||
parser.parse(maindiv).then( | ||
() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this._cleanWidgets(); | ||
this.content = newContent; | ||
this.$nextTick(() => { | ||
let maindiv = document.getElementById("maindiv"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
this.notify({ | ||
title: options.doing || this.$t("Loading..."), | ||
type: "info", | ||
dismissReceiver: (cb) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}, | ||
methods: { | ||
async updateContent(tgt, options = {}) { | ||
let dismiss; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected '}' to match '{' from line 20 and instead saw 'let'.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
} | ||
}, | ||
methods: { | ||
async updateContent(tgt, options = {}) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected ':' and instead saw 'updateContent'.
Expected '}' to match '{' from line 35 and instead saw '{'.
}, | ||
props: ["uiURL"], | ||
watch: { | ||
uiURL(newURI) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'concise methods' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const { t } = useI18n(); | ||
const notify = inject("notify"); | ||
return { | ||
notify, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
maindiv.setAttribute("data-lsmb-done", "true"); | ||
this._setFormFocus(); | ||
}, | ||
(e) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}); | ||
maindiv | ||
.querySelectorAll("a") | ||
.forEach((node) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
() => { | ||
registry | ||
.findWidgets(maindiv) | ||
.forEach((child) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.$nextTick(() => { | ||
let maindiv = document.getElementById("maindiv"); | ||
parser.parse(maindiv).then( | ||
() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this._cleanWidgets(); | ||
this.content = newContent; | ||
this.$nextTick(() => { | ||
let maindiv = document.getElementById("maindiv"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
this.notify({ | ||
title: options.doing || this.$t("Loading..."), | ||
type: "info", | ||
dismissReceiver: (cb) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}, | ||
methods: { | ||
async updateContent(tgt, options = {}) { | ||
let dismiss; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected '}' to match '{' from line 20 and instead saw 'let'.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
} | ||
}, | ||
methods: { | ||
async updateContent(tgt, options = {}) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected ':' and instead saw 'updateContent'.
Expected '}' to match '{' from line 35 and instead saw '{'.
}, | ||
props: ["uiURL"], | ||
watch: { | ||
uiURL(newURI) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'concise methods' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const { t } = useI18n(); | ||
const notify = inject("notify"); | ||
return { | ||
notify, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
maindiv.setAttribute("data-lsmb-done", "true"); | ||
this._setFormFocus(); | ||
}, | ||
(e) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}); | ||
maindiv | ||
.querySelectorAll("a") | ||
.forEach((node) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
() => { | ||
registry | ||
.findWidgets(maindiv) | ||
.forEach((child) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this.$nextTick(() => { | ||
let maindiv = document.getElementById("maindiv"); | ||
parser.parse(maindiv).then( | ||
() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
this._cleanWidgets(); | ||
this.content = newContent; | ||
this.$nextTick(() => { | ||
let maindiv = document.getElementById("maindiv"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
this.notify({ | ||
title: options.doing || this.$t("Loading..."), | ||
type: "info", | ||
dismissReceiver: (cb) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
}, | ||
methods: { | ||
async updateContent(tgt, options = {}) { | ||
let dismiss; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected '}' to match '{' from line 20 and instead saw 'let'.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
} | ||
}, | ||
methods: { | ||
async updateContent(tgt, options = {}) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected ':' and instead saw 'updateContent'.
Expected '}' to match '{' from line 35 and instead saw '{'.
}, | ||
props: ["uiURL"], | ||
watch: { | ||
uiURL(newURI) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'concise methods' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const { t } = useI18n(); | ||
const notify = inject("notify"); | ||
return { | ||
notify, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
See Commits and Changes for more details.
Created by pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )