FirebaseExtended / FirebaseExtended/action-hosting-deploy
Long service account email prevents showing the last 2 columns in Firebase Console
- Dominant language
- TypeScript
- Stars
- 809
- Forks
- 232
- PR merge metrics
- No merged PRs in 30d
Description
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:

After:

Contributor guide
Assessment
This issue has not been assessed yet.