Fixed const-ness of TAG in vertical_stack and horizontal_stack

This commit is contained in:
Michael Davidson 2023-12-22 21:00:15 +11:00
parent 447e3bdce7
commit d6c9a8133e
No known key found for this signature in database
GPG key ID: B8D1A99712B8B0EB

View file

@ -7,7 +7,7 @@
namespace esphome {
namespace graphical_layout {
static const char *TAG = "horizontalstack";
static const char *const TAG = "horizontalstack";
void HorizontalStack::dump_config(int indent_depth, int additional_level_depth) {
ESP_LOGCONFIG(TAG, "%*sItem Padding: %i", indent_depth, "", this->item_padding_);