mirror of
https://github.com/coollabsio/coolify.git
synced 2026-09-24 15:30:03 -05:00
fix(resources): remove empty-domain placeholder from grid
This commit is contained in:
@@ -314,8 +314,6 @@
|
||||
class="relative z-10 max-w-full self-start truncate text-[11px] text-neutral-500 hover:underline dark:text-fg-dim"
|
||||
:title="displayDomain(item.fqdn)" x-text="displayDomain(item.fqdn)"></a>
|
||||
</template>
|
||||
<span x-show="!item.fqdn"
|
||||
class="text-[11px] text-neutral-400 dark:text-fg-faint">-</span>
|
||||
</div>
|
||||
</article>
|
||||
</template>
|
||||
|
||||
@@ -9,3 +9,12 @@ test('resource table subtitle shows description only and never falls back to uui
|
||||
->not->toContain('item.description || item.fqdn || item.uuid')
|
||||
->not->toContain('item.fqdn || item.uuid');
|
||||
});
|
||||
|
||||
test('resource grid does not show a placeholder when a domain is missing', function () {
|
||||
$view = file_get_contents(resource_path('views/livewire/project/resource/index.blade.php'));
|
||||
$gridView = explode('x-show="viewMode === \'grid\'"', $view, 2)[1];
|
||||
|
||||
expect($gridView)
|
||||
->not->toContain('x-show="!item.fqdn"')
|
||||
->not->toContain('>-</span>');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user