Skip to content

Commit

Permalink
Prevent line break in subject id
Browse files Browse the repository at this point in the history
  • Loading branch information
SRichner committed Feb 28, 2024
1 parent ca9b243 commit 6cee12f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/electron/src/components/StudyInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ defineProps({
});
</script>
<template>
<article class="prose-lg prose mt-4">
<article class="prose prose-lg mt-4">
<h2>Study Info</h2>
<p>{{ studyInfo.shortDescription }}</p>
<table class="table-auto">
<tbody>
<tr>
<td>Your Subject Id:</td>
<td class="w-40">Your Subject Id:</td>
<td>
<span class="subject-badge">{{ studyInfo.subjectId }}</span>
</td>
Expand Down

0 comments on commit 6cee12f

Please sign in to comment.