We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1a3ec9 commit 7f14eb4Copy full SHA for 7f14eb4
web/src/ReadyWidget.jsx
@@ -49,14 +49,14 @@ export function ReadyWidget(props) {
49
}
50
</div>
51
{displayMessage && readyCondition &&
52
- <div className={`block ${messageColor}`}>
+ <div className={`${messageColor}`}>
53
{reconciling &&
54
- <p>{reconcilingCondition.message}</p>
+ <span title={reconcilingCondition.message}>{reconcilingCondition.message}</span>
55
56
{dependencyNotReady &&
57
- <p>Dependency not ready</p>
+ <span>Dependency not ready</span>
58
59
- <p>{readyCondition.message}</p>
+ <span title={readyCondition.message}>{readyCondition.message}</span>
60
61
62
0 commit comments