FirebaseExtended / action-hosting-deploy

Automatically deploy shareable previews for your Firebase Hosting sites
https://firebase.google.com/docs/hosting/github-integration
Apache License 2.0
695 stars 202 forks source link

Long service account email prevents showing the last 2 columns in Firebase Console #208

Open ustun opened 2 years ago

ustun commented 2 years ago

The service account email used for the deployments is too long, preventing the final column in console from being visible.

This is probably outside the scope of this project, but opening the issue here since the issue is triggered due to the usage of this action, and I have not been able to find a point of contact with the Firebase team.

Could you forward this issue along, as it might effect other people using this action?

Here is a workaround that limits the width of the third column:

const element = document.createElement('style')
document.head.appendChild(element);
element.sheet.insertRule(`.hist-row .h5g-hist-details .h5g-hist-details-email {width: 100px;}`, 0);

This way, the final column which has the three dots to show Restore button becomes visible again.

Before:

Screen Shot 2022-05-20 at 18 18 50

After:

Screen Shot 2022-05-20 at 18 17 33