feat(dockerfile): add button for Dockerfile dialog

This commit is contained in:
Joxit 2023-01-25 21:59:43 +01:00
parent 347e201f79
commit b3278511fb
No known key found for this signature in database
GPG key ID: F526592B8E012263

View file

@ -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">
@ -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>