const forceUpdate = ref(0);
watch(() => activeRoleFilters, () => {
forceUpdate.value++; // Increment to force reactivity
}, { deep: true });
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
htmlAttrs: { | |
lang: 'en', | |
'data-theme': 'light', | |
}, | |
} |
<div
class="flex">
<!-- Presentation main body-->
<div
id="presentation--main-body" class="w-full xl:w-3/4">
<!-- Presentation header -->
<div
id="presentation--header" class="flex flex-wrap">
<!-- Presentation header media -->
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CONFlux VSM SHAME Styles */ | |
/* GLOBAL */ | |
.border-tertiary { | |
border-color: var(--tertiary) !important; | |
} | |
.text-tertiary { | |
color: var(--tertiary) !important; |
<div class="flex-fill">
<h2 class="text-uppercase h6 font-weight-bold text-center mb-3">Sponsors</h2>
<ul class="cc-affiliates field__items d-flex flex-wrap list-unstyled justify-content-center">
<li class="cc-affiliates-item field__item col-12 col-sm-6 col-md-3 align-self-center mx-auto">
<div role="article" about="/affilate/institute-electrical-and-electronics-engineers-ieee" class="node node--type-cc-affiliate node--view-mode-cc-embedded-condensed clearfix">
<div class="col-12 pr-md-0 affiliate-logo-img position-relative bg-white mb-3 text-center">
<a href="https://ieee.org" title="https://ieee.org" target="_blank">
I hereby claim:
- I am stevengfx on github.
- I am stevengfx (https://keybase.io/stevengfx) on keybase.
- I have a public key ASD8KpKvjHTKyiJKuk9btlyDqqUT8M4H7TSqx115FU-SNQo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Listen for XDebug", | |
"type": "php", | |
"request": "launch", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Extra custom Xdebug setting for debug to work in VSCode. | |
xdebug.remote_enable = 1 | |
xdebug.remote_autostart = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# Get URL of single file field #} | |
{{ node.field_file.entity.uri.value }} | |
{# Get URL of multi file field #} | |
{{ node.field_file['#items'].entity.uri.value }} | |
{# Trun into link #} | |
{{ file_url(node.field_file.entity.uri.value) }} | |
{# Check if there is at least one value #} |
NewerOlder