Merge remote-tracking branch 'upstream/v2.6.x-release' into v2.6.x-release

This commit is contained in:
Anton B 2023-07-10 16:59:24 -03:00
commit c6a25d30fd
3 changed files with 3 additions and 3 deletions

View File

@ -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];

View File

@ -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();

View File

@ -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 }) => {