Skip to content

Commit

Permalink
Merge pull request #209 from D10S0VSkY-OSS/hotfix/icon_iac_type_size
Browse files Browse the repository at this point in the history
🐛fix: icon IaC_type size
  • Loading branch information
D10S0VSkY-OSS authored Dec 3, 2023
2 parents 6d4632f + 2640aad commit e0e5394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sld-dashboard/app/home/templates/stacks-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ <h2 class="h4">All Stacks</h2>
<td><span class="font-weight-normal">{{ stack.branch }}</span></td>
<td><span >
{% if stack.iac_type == 'terraform' %}
<img src="{{ url_for('static', filename='/assets/img/iac_type/tf.svg') }}" alt="Terraform Icon">
<img src="{{ url_for('static', filename='/assets/img/iac_type/tf.svg') }}" alt="Terraform Icon" width="100" height="70">
{% elif stack.iac_type == 'tofu' %}
<img src="{{ url_for('static', filename='/assets/img/iac_type/tofu.svg') }}" alt="Tofu Icon">
<img src="{{ url_for('static', filename='/assets/img/iac_type/tofu.svg') }}" alt="Tofu Icon" width="100" height="70">
{% endif %}
</span></td>
<td><span class="tag-style">{{ stack.tf_version }}</span></td>
Expand Down

0 comments on commit e0e5394

Please sign in to comment.