fix: DockerSecretsResolver - don't normalize absolute paths like /var/www/html/...
Some checks failed
Deploy Application / deploy (push) Has been cancelled
Some checks failed
Deploy Application / deploy (push) Has been cancelled
This commit is contained in:
22
tests/debug/test-template.view.php
Normal file
22
tests/debug/test-template.view.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<!-- Test Template für ComponentLinter -->
|
||||
<div>
|
||||
<!-- Direkte CSS-Klassen -->
|
||||
<button class="btn btn-primary">Direct Button</button>
|
||||
<div class="card">Direct Card</div>
|
||||
<span class="badge badge-success">Direct Badge</span>
|
||||
|
||||
<!-- Deprecated admin-* Klassen -->
|
||||
<button class="admin-btn admin-btn--secondary">Admin Button</button>
|
||||
<div class="admin-card">Admin Card</div>
|
||||
<span class="admin-badge admin-badge--error">Admin Badge</span>
|
||||
|
||||
<!-- Alte <component> Syntax -->
|
||||
<component name="button" variant="primary">Old Component</component>
|
||||
<component name="card" title="Test">Old Card</component>
|
||||
|
||||
<!-- Korrekte neue Syntax (sollte keine Fehler geben) -->
|
||||
<x-button variant="primary">New Button</x-button>
|
||||
<x-card title="Test">New Card</x-card>
|
||||
<x-badge variant="success">New Badge</x-badge>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user