Skip to content

Commit

Permalink
feat: add title in envParams
Browse files Browse the repository at this point in the history
  • Loading branch information
kungfuboy committed Jul 13, 2022
1 parent 96cff78 commit 78842a1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import { StorageService } from '../../services/storage';
<span class="text-gray-400">Environment variable</span>
<!-- <span class="my-2">{{ item.name }}</span> -->
<div *ngFor="let it of envParams" class="flex items-center justify-between h-8">
<span class="px-1 w-1/3 text-gray-500 text-ellipsis overflow-hidden">{{ it.name }}</span>
<span class="px-1 w-2/3 text-gray-500 text-ellipsis overflow-hidden">{{ it.value }}</span>
<span class="px-1 w-1/3 text-gray-500 text-ellipsis overflow-hidden" [title]="it.name">{{ it.name }}</span>
<span class="px-1 w-2/3 text-gray-500 text-ellipsis overflow-hidden" [title]="it.value">{{ it.value }}</span>
</div>
</div>`,
styleUrls: [],
Expand Down

0 comments on commit 78842a1

Please sign in to comment.