Skip to content

Commit

Permalink
fix cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dobri1408 committed Jun 13, 2023
1 parent 158d7a3 commit 93880cb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/NextCloud/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@ export const VideoBlockSchema = (props) => {
language: {
title: props.intl.formatMessage(messages.language),
choices: [
...(config?.settings?.eea.languages.map((el) => [el.code, el.name]) ||
[]),
...(config?.settings?.eea?.languages?.map((el) => [
el.code,
el.name,
]) || []),
],
},
file: {
Expand Down

0 comments on commit 93880cb

Please sign in to comment.