Skip to content

Commit

Permalink
feat: do not display extra hr if expiration is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasHirt committed Aug 30, 2021
1 parent a85b728 commit b2a29cc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
/>
</template>
<hr />
<div v-if="expirationSupported" class="oc-mt-m">
<div v-if="false" class="oc-mt-m">
<div class="uk-position-relative">
<oc-datepicker
id="files-collaborators-collaborator-expiration-input"
Expand All @@ -65,6 +65,7 @@
@click="resetExpirationDate"
/>
</div>
<hr />
</div>
</div>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
class="oc-mb"
@optionChange="collaboratorOptionChanged"
/>
<hr class="divider" />
<oc-grid gutter="small" class="oc-mb">
<div>
<oc-button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
/>
</div>
<collaborators-edit-options class="oc-mb" @optionChange="collaboratorOptionChanged" />
<hr class="divider" />
<oc-grid gutter="small" class="oc-mb">
<div>
<oc-button
Expand Down

0 comments on commit b2a29cc

Please sign in to comment.