action-hosting-deploy icon indicating copy to clipboard operation
action-hosting-deploy copied to clipboard

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

Open ustun opened this issue 3 years ago • 0 comments

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

ustun avatar May 20 '22 15:05 ustun