Skip to content

Commit

Permalink
feat(dockerfile): add button for Dockerfile dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Jan 25, 2023
1 parent 347e201 commit b327851
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/components/tag-history/tag-history.riot
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<i class="material-icons">arrow_back</i>
</material-button>
<h2>History of { props.image }:{ props.tag } <i class="material-icons">history</i></h2>
<material-button
text-color="var(--accent-text)"
color="inherit"
waves-color="var(--hover-background)"
waves-center="true"
rounded="true"
outlined
>
Dockerfile
</material-button>
</div>
</material-card>
<div if="{ !state.loadend }" class="spinner-wrapper">
Expand Down Expand Up @@ -238,4 +248,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
return res;
};
</script>
<style>
h2 {
flex-grow: 1;
display: flex;
flex-direction: row;
align-items: center;
}
</style>
</tag-history>

0 comments on commit b327851

Please sign in to comment.