diff options
author | silverwind <me@silverwind.io> | 2025-02-14 16:59:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-14 10:59:37 -0500 |
commit | 1ba7cbbfd6bb758b5c3796dfe46fa688dc20b5d1 (patch) | |
tree | 87b9ce8044af093ac8f272cfa4e3397559f14763 /web_src/js | |
parent | 8aede14b1d621cefa520c7bf6c838c866e1fabab (diff) | |
download | gitea-1ba7cbbfd6bb758b5c3796dfe46fa688dc20b5d1.tar.gz gitea-1ba7cbbfd6bb758b5c3796dfe46fa688dc20b5d1.zip |
Fix typo in HTML attribute (#33599)
Diffstat (limited to 'web_src/js')
-rw-r--r-- | web_src/js/components/DashboardRepoList.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/components/DashboardRepoList.vue b/web_src/js/components/DashboardRepoList.vue index 1840e89144..fc6a7bd281 100644 --- a/web_src/js/components/DashboardRepoList.vue +++ b/web_src/js/components/DashboardRepoList.vue @@ -445,7 +445,7 @@ export default defineComponent({ class="item navigation tw-py-1" :class="{'disabled': page === 1}" @click="changePage(page - 1)" :title="textPreviousPage" > - <svg-icon name="octicon-chevron-left" :size="16" clsas="tw-mr-1"/> + <svg-icon name="octicon-chevron-left" :size="16" class="tw-mr-1"/> </a> <a class="active item tw-py-1">{{ page }}</a> <a |