Merge remote-tracking branch 'upstream/v2.6.x-release' into v2.6.x-release
This commit is contained in:
commit
c6a25d30fd
@ -137,7 +137,7 @@ const QuickPollDropdown = (props) => {
|
||||
itemLabel = itemLabel?.replace(/\s+/g, '').toUpperCase();
|
||||
|
||||
const numChars = {
|
||||
1: 'A', 2: 'B', 3: 'C', 4: 'D', 5: 'E',
|
||||
1: 'A', 2: 'B', 3: 'C', 4: 'D', 5: 'E', 6: 'F', 7: 'G'
|
||||
};
|
||||
itemLabel = itemLabel.split('').map((c) => {
|
||||
if (numChars[c]) return numChars[c];
|
||||
|
@ -1,6 +1,6 @@
|
||||
const { test } = require('@playwright/test');
|
||||
const { LearningDashboard } = require('./learningdashboard');
|
||||
const c = require('../customparameters/constants');
|
||||
const c = require('../parameters/constants');
|
||||
|
||||
test.describe.serial('Learning Dashboard', async () => {
|
||||
const learningDashboard = new LearningDashboard();
|
||||
|
@ -3,7 +3,7 @@ const { Notifications } = require('./notifications');
|
||||
const { ChatNotifications } = require('./chatNotifications');
|
||||
const { PresenterNotifications } = require('./presenterNotifications');
|
||||
const { RecordingNotifications } = require('./recordingNotifications');
|
||||
const c = require('../customparameters/constants');
|
||||
const c = require('../parameters/constants');
|
||||
|
||||
test.describe.parallel('Notifications', () => {
|
||||
test('Save settings notification @ci', async ({ browser, context, page }) => {
|
||||
|
Loading…
Reference in New Issue
Block a user