forked from forkanization/Proxmox-arm64
Add a hoverover for the status emoji
This commit is contained in:
@@ -54,9 +54,17 @@ function ScriptItem({
|
|||||||
<div className="ml-4 flex flex-col justify-between">
|
<div className="ml-4 flex flex-col justify-between">
|
||||||
<div className="flex h-full w-full flex-col justify-between">
|
<div className="flex h-full w-full flex-col justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h1 className="text-lg font-semibold">
|
<h1 className="text-lg font-semibold">
|
||||||
{item.status} {item.name} {getDisplayValueFromType(item.type)}
|
<span title={
|
||||||
</h1>
|
item.status === '✅' ? 'This has been tested and should work.' :
|
||||||
|
item.status === '❌' ? 'This is not supported.' :
|
||||||
|
item.status === '🚧' ? 'This has not been ported yet.' :
|
||||||
|
item.status === '🧪' ? 'This has been ported but not tested yet.' :
|
||||||
|
''
|
||||||
|
}>
|
||||||
|
{item.status}
|
||||||
|
</span> {item.name} {getDisplayValueFromType(item.type)}
|
||||||
|
</h1>
|
||||||
<p className="w-full text-sm text-muted-foreground">
|
<p className="w-full text-sm text-muted-foreground">
|
||||||
Date added: {extractDate(item.date_created)}
|
Date added: {extractDate(item.date_created)}
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user