mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
Adressing comments
This commit is contained in:
parent
f8795efff8
commit
0bd759a40b
@ -66,7 +66,7 @@ export function buildMultiUserManagerModal(
|
||||
{ style: 'margin: 32px 64px; display: flex;' },
|
||||
bigPrimaryButton('Confirm',
|
||||
dom.boolAttr('disabled', (use) => !use(enableAdd)),
|
||||
dom.on('click', () => { save(ctl); }),
|
||||
dom.on('click', () => save(ctl)),
|
||||
testId('um-confirm')
|
||||
),
|
||||
bigBasicButton(
|
||||
|
@ -7,9 +7,9 @@ import {JSDOM} from 'jsdom';
|
||||
|
||||
describe('localization', function() {
|
||||
let instance: i18n;
|
||||
before(() => {
|
||||
before(async () => {
|
||||
instance = i18next.createInstance();
|
||||
void instance.init({
|
||||
await instance.init({
|
||||
lng: 'en',
|
||||
resources: {
|
||||
en: {
|
||||
|
Loading…
Reference in New Issue
Block a user