Skip to content

Commit

Permalink
fixup! Upgrade to Nextcloud vue 8.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: greta <[email protected]>
  • Loading branch information
GretaD committed Nov 9, 2023
1 parent e506fd9 commit f9a1aaa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/components/ContactDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<AppContentDetails>
<!-- nothing selected or contact not found -->
<EmptyContent v-if="!contact"
class="empty-content"
:name="t('contacts', 'No contact selected')"
:description="t('contacts', 'Select a contact on the list to begin')">
<template #icon>
Expand Down Expand Up @@ -1061,4 +1062,7 @@ section.contact-details {
.address-book {
min-width: 260px !important;
}
.empty-content {
height: 100%;
}
</style>
2 changes: 1 addition & 1 deletion src/components/ContactsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default {
// Search field
.search-contacts-field {
padding: 5px 10px 5px 50px;
margin-top: 4px;
margin-top: 4px;
> input {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/components/OrgChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
:allow-empty="false"
:searchable="false"
:placeholder="placeholder"
track-by="id"
input-id="select-chart-input"
label="label"
@input="chartChanged" />
</div>
Expand Down
6 changes: 5 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ webpackConfig.module.rules.push({

webpackConfig.resolve.extensions = ['.js', '.vue', '.ts', '.tsx']

webpackConfig.resolve.fallback = {"fs": false}
webpackConfig.resolve.fallback = { fs: false }

webpackConfig.resolve.alias = {
vue$: 'vue/dist/vue.esm.js',
}

module.exports = webpackConfig

0 comments on commit f9a1aaa

Please sign in to comment.