We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed60923 commit 543a5f0Copy full SHA for 543a5f0
.storybook/components/VersionTable.tsx
@@ -34,7 +34,7 @@ export function VersionTable() {
34
const nextVersion = allWCRVersions[currentWCRIndex + 1];
35
const currentMajor = parseInt(wcrVersion.split('.')[0]);
36
const currentMinor = parseInt(wcrVersion.split('.')[1]);
37
- const wcrVersions = [`~${wcrVersion}`];
+ const wcrVersions = [`${lastEntry ? '' : '~'}${wcrVersion}`];
38
if (nextVersion) {
39
let minor = parseInt(nextVersion.split('.')[1]);
40
for (let i = currentMinor + 1; i < minor; i++) {
@@ -45,7 +45,7 @@ export function VersionTable() {
45
return (
46
<tr key={wcrVersion}>
47
<td>
48
- {lastEntry ? '>= ' : ''}
+ {lastEntry ? '^' : ''}
49
{wcrVersions.join(', ')}
50
</td>
51
<td>~{wcVersion}</td>
0 commit comments