File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -364,9 +364,18 @@ def _get_data_list_dict(
364
364
"Number of bands" : f"{ bs .nb_bands :,} " ,
365
365
"Number of q-points" : f"{ bs .nb_qpoints :,} " ,
366
366
# for NAC see https://phonopy.github.io/phonopy/formulation.html#non-analytical-term-correction
367
- "Has NAC (see phonopy docs)" : bs .has_nac ,
368
- "Has imaginary frequencies" : bs .has_imaginary_freq (),
369
- "Has eigen-displacements" : bs .has_eigendisplacements ,
367
+ Label (
368
+ [
369
+ "Has " ,
370
+ html .A (
371
+ "NAC" ,
372
+ href = "https://phonopy.github.io/phonopy/formulation.html#non-analytical-term-correction" ,
373
+ target = "blank" ,
374
+ ),
375
+ ]
376
+ ): "Yes" if bs .has_nac else "No" ,
377
+ "Has imaginary frequencies" : "Yes" if bs .has_imaginary_freq () else "No" ,
378
+ "Has eigen-displacements" : "Yes" if bs .has_eigendisplacements else "No" ,
370
379
"Min frequency" : min_freq_report ,
371
380
"max frequency" : f"{ max (dos .frequencies ):.2f} THz" ,
372
381
}
Original file line number Diff line number Diff line change @@ -244,7 +244,6 @@ def __init__(
244
244
rounded : bool = False ,
245
245
loading : bool = False ,
246
246
static : bool = False ,
247
- disabled : bool = False ,
248
247
** kwargs ,
249
248
) -> None :
250
249
"""The button is an essential element of any design. It's meant to look and behave as an interactive element of your page.
@@ -261,7 +260,6 @@ def __init__(
261
260
_update_css_class (kwargs , "is-rounded" , rounded )
262
261
_update_css_class (kwargs , "is-loading" , loading )
263
262
_update_css_class (kwargs , "is-static" , static )
264
- _update_css_class (kwargs , "is-disabled" , disabled )
265
263
super ().__init__ (* args , ** kwargs )
266
264
267
265
You can’t perform that action at this time.
0 commit comments