0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Rails】コンパイルした時にクラス属性の値が更新されない時の対処法

Posted at

Railsのアプリケーションでファイルを更新してコンパイルしたのにブラウザに表示されるクラス属性が変わらない状況が発生したので、その対処法。

##事象
クラス属性のアンダーバーをハイフンに変更し、コンパイル後リロードしたがブラウザに反映されなかった。

index.html.erb
<div class="top_wrapper">

index.html.erb
<div class="top-wrapper">

##対処法
-_はコンパイル時に差分とみなされていない様子。

アルファベットを変更してリロードし、そこから変更したいクラス名に変更すると反映される。

index.html.erb
<div class="top_wrapper">

↓ ダミーの変更を挟み、リロード

index.html.erb
<div class="top">

↓ 本来変更したいクラス名に変更

index.html.erb
<div class="top-wrapper">

image.png

無事変更が反映された。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?