Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
Updated release date
  • Loading branch information
andrey18106 committed Dec 23, 2022
1 parent 1a811bd commit 17e9e57
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [0.3.2 - 2022-12-22]
## [0.3.2 - 2022-12-23]

[`cloud_py_api`](https://github.com/cloud-py-api/cloud_py_api) is **required** to be installed
and enabled first.
Expand Down
4 changes: 2 additions & 2 deletions js/mediadc-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/mediadc-main.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/mediadc-src_views_CollectorDetails_vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/mediadc-src_views_CollectorDetails_vue.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
/*! For license information please see NcActions.js.LICENSE.txt */

/*! For license information please see NcSelect.js.LICENSE.txt */

Large diffs are not rendered by default.

This file was deleted.

This file was deleted.

16 changes: 9 additions & 7 deletions src/components/details/DetailsExport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@
<h2>{{ t('mediadc', 'Export task results') }}</h2>
<div class="selection-container">
<label for="export-file-format">{{ t('mediadc', 'Select export file format') }}</label>
<NcSelect v-model="exportFileFormat"
:input-id="'export-file-format'"
:options="exportFormatOptions" />
<select id="export-file-format"
v-model="exportFileFormat">
<option v-for="format in exportFormatOptions" :key="format" :value="format">
{{ format }}
</option>
</select>
</div>
<NcButton :href="downloadExportUrl">
<NcButton :href="downloadExportUrl" class="mediadc-button-vue">
{{ t('mediadc', 'Export') }}
</NcButton>
</div>
Expand All @@ -46,13 +49,11 @@
import { generateUrl } from '@nextcloud/router'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js'
export default {
name: 'DetailsExport',
components: {
NcButton,
NcSelect,
},
props: {
task: {
Expand Down Expand Up @@ -116,7 +117,7 @@ export default {
box-shadow: 0 0 30px var(--color-box-shadow);
padding: 20px 20px 10px;
width: 100%;
max-width: 600px;
max-width: 300px;
margin: auto;
background-color: var(--color-main-background);
}
Expand All @@ -137,6 +138,7 @@ export default {
.selection-container {
display: flex;
flex-direction: column;
margin: 10px auto;
}
@media (max-width: 540px) {
Expand Down

0 comments on commit 17e9e57

Please sign in to comment.