Cédric Krier pushed to branch branch/default at Tryton / Tryton
Commits:
c1a4b917 by Cédric Krier at 2023-07-24T23:31:37+02:00
Pass the input name as argument to run function of AskDialog
The changeset 36ed62f49cec set the new argument at the wrong position.
Closes #12373
- - - - -
1 changed file:
- sao/src/screen.js
Changes:
=====================================
sao/src/screen.js
=====================================
@@ -267,7 +267,7 @@
if (!text) {
return;
}
- Sao.common.ask.run(Sao.i18n.gettext('Bookmark Name:',
'bookmark'))
+ Sao.common.ask.run(Sao.i18n.gettext('Bookmark Name:'),
'bookmark')
.then(name => {
if (!name) {
return;
View it on Heptapod:
https://foss.heptapod.net/tryton/tryton/-/commit/c1a4b9177152a432b019412ec533b094d6792c09
--
View it on Heptapod:
https://foss.heptapod.net/tryton/tryton/-/commit/c1a4b9177152a432b019412ec533b094d6792c09
You're receiving this email because of your account on foss.heptapod.net.