We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BigQueryの新UIにおいて、いくつか不満があるが その一つにカラム名の表示の省略がある。
特にstruct型に対する表示が好ましくなく、次のような表示となる。
ツールチップを表示さればカラム名は表示されるがコピーもできなくなるため端的に煩わしい。 これを解消するためのスニペットを紹介する。
$$('th[aria-describedby]').forEach( n => { const column_name = $('#' + n.getAttribute('aria-describedby')).textContent; $("b", n).textContent = column_name; n.replaceChildren($("b", n)); n.style = `width: ${column_name.length}rem;` } )
The text was updated successfully, but these errors were encountered:
takegue
No branches or pull requests
BigQuery 新UIによるカラム名の省略表示
BigQueryの新UIにおいて、いくつか不満があるが
その一つにカラム名の表示の省略がある。
特にstruct型に対する表示が好ましくなく、次のような表示となる。
ツールチップを表示さればカラム名は表示されるがコピーもできなくなるため端的に煩わしい。
これを解消するためのスニペットを紹介する。
スニペット適用前後での変化
スニッペット
The text was updated successfully, but these errors were encountered: