mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-07 14:25:37 +00:00
Removed not needed whitepsace next to the view name
This commit is contained in:
parent
c86779c8e1
commit
ad2e4ec1bc
4 changed files with 21 additions and 10 deletions
web-frontend/modules/database/components
|
@ -77,7 +77,12 @@
|
|||
</ViewContext>
|
||||
</li>
|
||||
<li
|
||||
v-if="hasSelectedView && view._.type.canFilter"
|
||||
v-if="
|
||||
hasSelectedView &&
|
||||
view._.type.canFilter &&
|
||||
($hasPermission('database.table.view.create_filter', view) ||
|
||||
readOnly)
|
||||
"
|
||||
class="header__filter-item"
|
||||
>
|
||||
<ViewFilter
|
||||
|
@ -89,7 +94,12 @@
|
|||
></ViewFilter>
|
||||
</li>
|
||||
<li
|
||||
v-if="hasSelectedView && view._.type.canSort"
|
||||
v-if="
|
||||
hasSelectedView &&
|
||||
view._.type.canSort &&
|
||||
($hasPermission('database.table.view.create_sort', view) ||
|
||||
readOnly)
|
||||
"
|
||||
class="header__filter-item"
|
||||
>
|
||||
<ViewSort
|
||||
|
@ -101,7 +111,12 @@
|
|||
></ViewSort>
|
||||
</li>
|
||||
<li
|
||||
v-if="hasSelectedView && view._.type.canShare && !readOnly"
|
||||
v-if="
|
||||
hasSelectedView &&
|
||||
view._.type.canShare &&
|
||||
!readOnly &&
|
||||
$hasPermission('database.table.view.update_slug', view)
|
||||
"
|
||||
class="header__filter-item"
|
||||
>
|
||||
<ShareViewLink :view="view" :read-only="readOnly"></ShareViewLink>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div v-if="$hasPermission('database.table.view.update_slug', view)">
|
||||
<div>
|
||||
<a
|
||||
ref="contextLink"
|
||||
class="header__filter-link"
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
<template>
|
||||
<div
|
||||
v-if="$hasPermission('database.table.view.create_filter', view) || readOnly"
|
||||
>
|
||||
<div>
|
||||
<a
|
||||
ref="contextLink"
|
||||
class="header__filter-link"
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
<template>
|
||||
<div
|
||||
v-if="$hasPermission('database.table.view.create_sort', view) || readOnly"
|
||||
>
|
||||
<div>
|
||||
<a
|
||||
ref="contextLink"
|
||||
class="header__filter-link"
|
||||
|
|
Loading…
Add table
Reference in a new issue