Skip to content

Commit

Permalink
fix: fix displayeing site name in site cards - EXO-68195 (#322)
Browse files Browse the repository at this point in the history
before this change, the site name was capitalized on the site card: The name is displayed in upper case for each word no matter what has been written in the menu.
After this change, the site name is displayed without capitalizing every word
  • Loading branch information
GouadriaHanen committed Feb 26, 2024
1 parent a72e4d7 commit 3a6931b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
flat
dense
class="mt-2">
<span class="font-weight-bold text-capitalize"> {{ site.displayName || site.name }} </span>
<span class="font-weight-bold"> {{ site.displayName || site.name }} </span>
<v-spacer />
<site-management-site-card-menu
:site="site" />
Expand Down

0 comments on commit 3a6931b

Please sign in to comment.