@@ -359,7 +359,7 @@ export default sfc; // activate the IDE's Vue plugin
359359 otherwise if the "input" handles click event for intermediate status, it breaks the internal state-->
360360 <input type="checkbox" class="tw-pointer-events-none" v-bind.prop="checkboxArchivedFilterProps">
361361 <label>
362- <svg-icon name="octicon-archive" :size="16" class-name ="tw-mr-1"/>
362+ <svg-icon name="octicon-archive" :size="16" class="tw-mr-1"/>
363363 {{ textShowArchived }}
364364 </label>
365365 </div>
@@ -368,7 +368,7 @@ export default sfc; // activate the IDE's Vue plugin
368368 <div class="ui checkbox" ref="checkboxPrivateFilter" :title="checkboxPrivateFilterTitle">
369369 <input type="checkbox" class="tw-pointer-events-none" v-bind.prop="checkboxPrivateFilterProps">
370370 <label>
371- <svg-icon name="octicon-lock" :size="16" class-name ="tw-mr-1"/>
371+ <svg-icon name="octicon-lock" :size="16" class="tw-mr-1"/>
372372 {{ textShowPrivate }}
373373 </label>
374374 </div>
@@ -405,15 +405,15 @@ export default sfc; // activate the IDE's Vue plugin
405405 <ul class="repo-owner-name-list">
406406 <li class="tw-flex tw-items-center tw-py-2" v-for="repo, index in repos" :class="{' active' : index === activeIndex}" :key="repo.id">
407407 <a class="repo-list-link muted" :href="repo.link">
408- <svg-icon :name="repoIcon(repo)" :size="16" class-name ="repo-list-icon"/>
408+ <svg-icon :name="repoIcon(repo)" :size="16" class="repo-list-icon"/>
409409 <div class="text truncate">{{ repo.full_name }}</div>
410410 <div v-if="repo.archived">
411411 <svg-icon name="octicon-archive" :size="16"/>
412412 </div>
413413 </a>
414414 <a class="tw-flex tw-items-center" v-if="repo.latest_commit_status" :href="repo.latest_commit_status.TargetURL" :data-tooltip-content="repo.locale_latest_commit_status">
415415 <!-- the commit status icon logic is taken from templates/repo/commit_status.tmpl -->
416- <svg-icon :name="statusIcon(repo.latest_commit_status.State)" :class-name ="' tw- ml- 2 commit- status icon text ' + statusColor(repo.latest_commit_status.State)" :size="16"/>
416+ <svg-icon :name="statusIcon(repo.latest_commit_status.State)" :class="' tw- ml- 2 commit- status icon text ' + statusColor(repo.latest_commit_status.State)" :size="16"/>
417417 </a>
418418 </li>
419419 </ul>
@@ -424,7 +424,7 @@ export default sfc; // activate the IDE's Vue plugin
424424 class="item navigation tw-py-1" :class="{' disabled' : page === 1}"
425425 @click="changePage(1)" :title="textFirstPage"
426426 >
427- <svg-icon name="gitea-double-chevron-left" :size="16" class-name ="tw-mr-1"/>
427+ <svg-icon name="gitea-double-chevron-left" :size="16" class="tw-mr-1"/>
428428 </a>
429429 <a
430430 class="item navigation tw-py-1" :class="{' disabled' : page === 1}"
@@ -437,13 +437,13 @@ export default sfc; // activate the IDE's Vue plugin
437437 class="item navigation" :class="{' disabled' : page === finalPage}"
438438 @click="changePage(page + 1)" :title="textNextPage"
439439 >
440- <svg-icon name="octicon-chevron-right" :size="16" class-name ="tw-ml-1"/>
440+ <svg-icon name="octicon-chevron-right" :size="16" class="tw-ml-1"/>
441441 </a>
442442 <a
443443 class="item navigation tw-py-1" :class="{' disabled' : page === finalPage}"
444444 @click="changePage(finalPage)" :title="textLastPage"
445445 >
446- <svg-icon name="gitea-double-chevron-right" :size="16" class-name ="tw-ml-1"/>
446+ <svg-icon name="gitea-double-chevron-right" :size="16" class="tw-ml-1"/>
447447 </a>
448448 </div>
449449 </div>
@@ -454,7 +454,7 @@ export default sfc; // activate the IDE's Vue plugin
454454 <ul class="repo-owner-name-list">
455455 <li class="tw-flex tw-items-center tw-py-2" v-for="org in organizations" :key="org.name">
456456 <a class="repo-list-link muted" :href="subUrl + ' / ' + encodeURIComponent(org.name)">
457- <svg-icon name="octicon-organization" :size="16" class-name ="repo-list-icon"/>
457+ <svg-icon name="octicon-organization" :size="16" class="repo-list-icon"/>
458458 <div class="text truncate">{{ org.name }}</div>
459459 <div><!-- div to prevent underline of label on hover -->
460460 <span class="ui tiny basic label" v-if="org.org_visibility !== ' public ' ">
@@ -464,7 +464,7 @@ export default sfc; // activate the IDE's Vue plugin
464464 </a>
465465 <div class="text light grey tw-flex tw-items-center tw-ml-2">
466466 {{ org.num_repos }}
467- <svg-icon name="octicon-repo" :size="16" class-name ="tw-ml-1 tw-mt-0.5"/>
467+ <svg-icon name="octicon-repo" :size="16" class="tw-ml-1 tw-mt-0.5"/>
468468 </div>
469469 </li>
470470 </ul>
0 commit comments