Skip to content

Commit 7f14eb4

Browse files
committed
Fixing text ellipsis
1 parent d1a3ec9 commit 7f14eb4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

web/src/ReadyWidget.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ export function ReadyWidget(props) {
4949
}
5050
</div>
5151
{displayMessage && readyCondition &&
52-
<div className={`block ${messageColor}`}>
52+
<div className={`${messageColor}`}>
5353
{reconciling &&
54-
<p>{reconcilingCondition.message}</p>
54+
<span title={reconcilingCondition.message}>{reconcilingCondition.message}</span>
5555
}
5656
{dependencyNotReady &&
57-
<p>Dependency not ready</p>
57+
<span>Dependency not ready</span>
5858
}
59-
<p>{readyCondition.message}</p>
59+
<span title={readyCondition.message}>{readyCondition.message}</span>
6060
</div>
6161
}
6262
</div>

0 commit comments

Comments
 (0)