Handle UiKit & iconMaterial removal

Bump web-test-middleware in CI

Remove fileUpload volumes in CI, bump web to official v5.0.0

Rename web changelog & fix settings acceptance test

Add 'Spaces' to settings navBar tests

Add new profile link & quota to settings userMenu tests

Update expected failures from web v5.0.0 release

Bump web commit ID

Bump web commit ID
This commit is contained in:
Pascal Wengerter
2022-02-15 14:46:14 +00:00
parent f90d329e85
commit ab82aeed73
18 changed files with 138 additions and 82 deletions
+5 -5
View File
@@ -1,16 +1,16 @@
<template>
<div class="oc-p">
<main class="uk-flex uk-flex-column" id="settings-app">
<main class="oc-flex oc-flex-column" id="settings-app">
<template v-if="initialized">
<oc-alert v-if="extensions.length === 0" variation="primary" no-close>
<p class="uk-flex uk-flex-middle">
<p class="oc-flex oc-flex-middle">
<oc-icon name="information" class="oc-mr-s" />
<translate>No settings available</translate>
</p>
</oc-alert>
<template v-else>
<template v-if="selectedExtensionName">
<div class="uk-flex uk-flex-between uk-flex-middle">
<div class="oc-flex oc-flex-between oc-flex-middle">
<h1 class="oc-page-title">
{{ selectedExtensionName }}
</h1>
@@ -96,7 +96,7 @@ export default {
*/
const navItem = {
name: this.getExtensionName(extension),
iconMaterial: this.getExtensionIcon(extension),
icon: this.getExtensionIcon(extension),
route: {
name: 'settings',
path: `/settings/${extension}`
@@ -126,7 +126,7 @@ export default {
extension = extension || ''
switch (extension) {
case 'ocis-accounts':
return 'account_circle'
return 'team'
case 'ocis-hello':
return 'tag_faces'
default: