[pull] master from ledgersmb:master#15
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. |
Rebuild JS when dependencies change
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…a-docs Add ability to regenerate database documentation to Makefile
…pping Wrap INSERT statements after the table name for easier searching
Remove unused modules affected by schema refactoring
…s-not-gl Use 'transactions' table for anything that's not a GL transaction
* Approval is in 'transactions' now, not in 'gl' * Centralize 'transdate' field from AR and AP tables * Centralize 'transdate' field from GL table
Replace the use of 'glnumber' counter with appropriate counters
| displayName: "API", | ||
| ...common, | ||
|
|
||
| moduleFileExtensions: ["js", "json", "vue"], |
There was a problem hiding this comment.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
Unrecoverable syntax error. (96% scanned).
| }, | ||
| { | ||
| displayName: "API", | ||
| ...common, |
There was a problem hiding this comment.
Expected '}' to match '{' from line 295 and instead saw '...'.
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
| projects: [ | ||
| { | ||
| displayName: "browser", | ||
| ...common, |
There was a problem hiding this comment.
Expected ']' to match '[' from line 267 and instead saw 'common'.
Expected '}' to match '{' from line 268 and instead saw '...'.
| https://github.com/jestjs/jest/blob/v30.0.0/packages/jest-types/src/Config.ts#L329-L394 was used | ||
| to manually split the keys between 'common' and the default export below. | ||
| */ | ||
| const common = { |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| expect(buttons).toEqual([ | ||
| ["change-default", "modify", "save", "cancel"], | ||
| ["change-default", "modify", "save", "cancel"] | ||
| ]); |
There was a problem hiding this comment.
Unrecoverable syntax error. (32% scanned).
| expect(wrapper.find(".dynatableData").isVisible()).toBe(true) | ||
| ); | ||
|
|
||
| const language_items = wrapper.findAll(".data-row"); |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| expect(wrapper.get(".dynatableLoading").text()).toBe("Loading..."); | ||
|
|
||
| // Wait until loading done | ||
| await retry(() => |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
Expected an assignment or function call and instead saw an expression.
Missing semicolon.
|
|
||
| it("should show dialog with editable data", async () => { | ||
| // Give user edition capability | ||
| sessionUser.$patch({ roles: ["language_edit"] }); |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
Expected ')' and instead saw ';'.
Expected ')' to match '{' from line 48 and instead saw '.'.
Missing semicolon.
| // what was returned by the API | ||
| }); | ||
|
|
||
| it("should show dialog with editable data", async () => { |
|
|
||
| // Validate data displayed | ||
| let data = language_items.map((rows) => { | ||
| return rows.findAll(".input-box").map((row) => row.element.value); |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
Enhance Makefile
|
|
||
| export const useCountriesStore = defineStore("countries", { | ||
| ...configStoreTemplate, | ||
| getters: { |
There was a problem hiding this comment.
Missing semicolon.
Unrecoverable syntax error. (25% scanned).
const 'getters' is initialized to 'undefined'.
| let { actions: configActions, getters: configGetters } = configStoreTemplate; | ||
|
|
||
| export const useCountriesStore = defineStore("countries", { | ||
| ...configStoreTemplate, |
There was a problem hiding this comment.
Expected ')' and instead saw 'configStoreTemplate'.
Expected '}' to match '{' from line 8 and instead saw '...'.
|
|
||
| let { actions: configActions, getters: configGetters } = configStoreTemplate; | ||
|
|
||
| export const useCountriesStore = defineStore("countries", { |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'export' is only available in ES6 (use 'esversion: 6').
| import { defineStore } from "pinia"; | ||
| import { configStoreTemplate } from "@/store/configTemplate"; | ||
|
|
||
| let { actions: configActions, getters: configGetters } = configStoreTemplate; |
There was a problem hiding this comment.
'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).
| /** @format */ | ||
|
|
||
| import { defineStore } from "pinia"; | ||
| import { configStoreTemplate } from "@/store/configTemplate"; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| /* 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.
'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.
'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.
'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.
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.
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| c++; | ||
| var qobj = domform.toQuery(this.domNode); | ||
| qobj = "action=" + this.clickedAction + "&" + qobj; | ||
| let qobj = domform.toQuery(this.domNode); |
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| typeof this.method === "undefined" ? "GET" : this.method; | ||
| var url = this.action; | ||
| var options = { handleAs: "text" }; | ||
| let url = |
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
|
|
||
| var method = | ||
| const options = { handleAs: "text" }; | ||
| const method = |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| } | ||
|
|
||
| var method = | ||
| const options = { handleAs: "text" }; |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| }, | ||
| submit: function () { | ||
| if (!this.validate()) { | ||
| const widget = registry.getEnclosingWidget(this.clickedAction); |
There was a problem hiding this comment.
'const' 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.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
| 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.
'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.
'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.
'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.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )