code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/app.js b/app.js @@ -21,7 +21,7 @@ import hpManager from './hp-manager.js';
// import npcManager from './npc-manager.js';
import equipmentRender from './equipment-render.js';
// import {bindInterface as inventoryBindInterface} from './inventory.js';
-import fx from './fx.js';
+// import fx from './fx.js';
i... | 2 |
diff --git a/src/routes.js b/src/routes.js @@ -231,7 +231,7 @@ export function loadPlanFromCSV(assignmentList, state) {
const delimiter = (state.place.id === "louisiana") ? ";" : ",";
- let districtIds = new Set(rows.map((row, index) => row.split(delimiter)[1].split("_")[0] ));
+ let districtIds = new Set(rows.slice(1)... | 8 |
diff --git a/src/Formio.js b/src/Formio.js @@ -650,7 +650,7 @@ export default class Formio {
.then(() => Formio.pluginGet('staticRequest', requestArgs)
.then((result) => {
if (isNil(result)) {
- return Formio.request(url, method, requestArgs.data, requestArgs.opts.header, requestArgs.opts);
+ return Formio.request(requ... | 11 |
diff --git a/lib/voice/VoiceConnectionManager.js b/lib/voice/VoiceConnectionManager.js @@ -10,7 +10,7 @@ class VoiceConnectionManager extends Collection {
join(guildID, channelID, options) {
var connection = this.get(guildID);
- if(connection) {
+ if(connection && connection.ws) {
connection.switchChannel(channelID);
r... | 8 |
diff --git a/app/scripts/controllers/transactions/index.js b/app/scripts/controllers/transactions/index.js @@ -568,9 +568,14 @@ class TransactionController extends EventEmitter {
const historicalTransactions = Object.assign({}, this.gethistoricalTransactions())
if (!historicalTransactions) return
+ const txHistory = th... | 8 |
diff --git a/lib/support/cliUtil.js b/lib/support/cliUtil.js 'use strict';
const fs = require('fs');
+const path = require('path');
module.exports = {
getURLs(urls) {
const allUrls = [];
urls = urls.map((url) => url.trim());
- for (var url of urls) {
+ for (let url of urls) {
if (url.startsWith('http')) {
allUrls.push(... | 7 |
diff --git a/articles/appliance/cli/adding-node-to-backup-role.md b/articles/appliance/cli/adding-node-to-backup-role.md @@ -13,10 +13,6 @@ applianceId: appliance11
# PSaaS Appliance: Adding a Node to the Backup Role
-::: note
- This document applies beginning with PSaaS Appliance update **build 7247**.
-:::
-
## Prere... | 2 |
diff --git a/ethereum.js b/ethereum.js @@ -36,4 +36,11 @@ import contractAbi from 'https://contracts.webaverse.com/ethereum/abi.js';
return ecrecover(prefixedHash, v, r, s) == a;
} */
+ /*
+ const events = await contract.getPastEvents('Transfer', {fromBlock: 0, toBlock: 'latest',})
+ for (const event of events) {
+ con... | 0 |
diff --git a/src/Router/index.js b/src/Router/index.js @@ -43,7 +43,7 @@ export let activePage
* @param routes
* @param provider
*/
-export const initRouter = ({ appInstance, routes, provider }) => {
+export const startRouter = ({ appInstance, routes, provider }) => {
app = appInstance
application = appInstance.applica... | 10 |
diff --git a/lock-manager.js b/lock-manager.js @@ -76,5 +76,5 @@ export class LockManager {
}
}
}
-const locks = new LockManager();
-export default locks;
\ No newline at end of file
+// const locks = new LockManager();
+// export default locks;
\ No newline at end of file
| 2 |
diff --git a/src/embeds/EarthCycleEmbed.js b/src/embeds/EarthCycleEmbed.js @@ -13,13 +13,14 @@ class EarthCycleEmbed extends BaseEmbed {
constructor(bot, state) {
super();
+ this.title = `Worldstate - ${state.isCetus ? 'Plains of Eidolon' : 'Earth'} Cycle - ${state.isDay ? 'Day' : 'Night'}time`;
this.color = state.isDa... | 2 |
diff --git a/src/components/CurrentTeams/index.js b/src/components/CurrentTeams/index.js @@ -51,8 +51,12 @@ class currentTeams extends PureComponent {
this.setState({ editRoleLoading: true });
const { dispatch, eid, userInfo } = this.props;
const { toEditAction } = this.state;
+ let type = 'user/editUserRoles';
+ if (t... | 1 |
diff --git a/src/libs/actions/FormActions.js b/src/libs/actions/FormActions.js @@ -21,7 +21,7 @@ function setErrors(formID, errors) {
* @param {Object} draftValues
*/
function setDraftValues(formID, draftValues) {
- Onyx.merge(`${formID}Draft`, draftValues);
+ Onyx.merge(`${formID}DraftValues`, draftValues);
}
export {... | 13 |
diff --git a/includes/Modules/Subscribe_With_Google/Header.php b/includes/Modules/Subscribe_With_Google/Header.php @@ -66,14 +66,6 @@ final class Header {
true
);
- // Make WP URLs available to SwgPress' JavaScript.
- $api_base_url = get_option( 'siteurl' ) . '/wp-json/subscribewithgoogle/v1';
- wp_localize_script(
- '... | 2 |
diff --git a/token-metadata/0x2129fF6000b95A973236020BCd2b2006B0D8E019/metadata.json b/token-metadata/0x2129fF6000b95A973236020BCd2b2006B0D8E019/metadata.json "symbol": "MYX",
"address": "0x2129fF6000b95A973236020BCd2b2006B0D8E019",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/token-metadata/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB/metadata.json b/token-metadata/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB/metadata.json "symbol": "TEND",
"address": "0x1453Dbb8A29551ADe11D89825CA812e05317EAEB",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/app-template/config-template.xml b/app-template/config-template.xml <plugin name="cordova-plugin-screen-orientation" spec="~1.4.2" />
<plugin name="ionic-plugin-keyboard" spec="~2.2.1" />
<plugin name="cordova-plugin-whitelist" spec="~1.3.0" />
- <plugin name="cordova-plugin-wkwebview-engine" spec="https:/... | 3 |
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
-<!ENTITY version-java-client "5.1.2">
+<!ENTITY version-java-client "5.2.0">
<... | 12 |
diff --git a/src/agent/index.js b/src/agent/index.js @@ -1500,12 +1500,15 @@ function listMemoryRangesJson () {
});
}
-function changeMemoryProtection (args) {
- const [address, size, protection] = args;
-
- Memory.protect(ptr(address), parseInt(size), protection);
-
- return true;
+async function changeMemoryProtectio... | 7 |
diff --git a/client/src/containers/FlightDirector/SimulatorConfig/config/Stations/ambianceConfig.js b/client/src/containers/FlightDirector/SimulatorConfig/config/Stations/ambianceConfig.js @@ -18,7 +18,7 @@ class AmbianceConfig extends Component {
mutation SetAmbiance(
$stationSetID: ID!
$stationName: String!
- $ambian... | 1 |
diff --git a/packages/cli/src/models/compiler/Compiler.ts b/packages/cli/src/models/compiler/Compiler.ts @@ -18,7 +18,12 @@ export async function compile(
if (!force && state.alreadyCompiled) return;
// Merge config file compiler options with those set explicitly
- const resolvedOptions: ProjectCompilerOptions = {};
+ ... | 12 |
diff --git a/docs/layout/content.html b/docs/layout/content.html @@ -22,7 +22,7 @@ next: "layout-footer"
You can specify the size your content has adding <code class="siimple-code">siimple-content--[SIZE]</code> class.
</div>
<pre class="siimple-pre">
-<div class="siimple-content siimple--large">
+<div class="... | 1 |
diff --git a/articles/user-profile/normalized.md b/articles/user-profile/normalized.md @@ -41,7 +41,7 @@ The `identities` array contains the following attributes:
**NOTE:** Auth0 will pass to your app all other properties supplied by the identity provider, even if those that are not mapped to the standard attributes li... | 0 |
diff --git a/policykit/policyengine/templates/policyengine/v2/index.html b/policykit/policyengine/templates/policyengine/v2/index.html {% else %}
{% display_action event.action_object %}
{% endif %}
-
+ {% endfor %}
<!-- {# Time #}
{{ event.timestamp|timesince }} -->
</div>
| 0 |
diff --git a/sketch/README.md b/sketch/README.md # Using the Sketch Files
-## System Icons:
+## System Icons
This is to explain the different methods and tools used to maintain `ids-icons-system.sketch` in the Uplift theme. (Please note that no changes to the icons Sketch files in `theme-soho` are permitted at this tim... | 1 |
diff --git a/src/components/seo.js b/src/components/seo.js @@ -53,7 +53,7 @@ function SEO({ description, lang, meta, title }) {
},
{
name: `twitter:card`,
- content: `summary`,
+ content: `summary_large_image`,
},
{
name: `twitter:creator`,
| 4 |
diff --git a/modules/site/parent_templates/site/common/js/application.js b/modules/site/parent_templates/site/common/js/application.js @@ -3199,29 +3199,24 @@ var XBOOTSTRAP = (function ($, parent) { var self = parent.VARIABLES = {};
);
for (var k=0; k<variables.length; k++) {
- // if it's first attempt to replace vars... | 11 |
diff --git a/pages/measurement.js b/pages/measurement.js @@ -34,11 +34,12 @@ export default class Measurement extends React.Component {
}
let msmtContent = await client.get(measurementUrl)
initialProps['measurement'] = msmtContent.data
+
let countries = countriesR.data.countries
- const { name: country } = countries.fi... | 9 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,13 @@ To see all merged commits on the master branch that will be part of the next plo
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.58.1] -- 2020-12-04
+
+### Fixed
+ - Fix `automargin` bug for the case of short remaining height or width for plot... | 3 |
diff --git a/src/modules/app/initialize/AppRun.js b/src/modules/app/initialize/AppRun.js event.preventDefault();
}
+ if (toState.name === 'desktop' && !this._canOpenDesktopPage) {
+ event.preventDefault();
+ $state.go(START_STATES[0]);
+ }
+
if (needShowTutorial && toState.name !== 'dex-demo') {
modalManager.showTutori... | 1 |
diff --git a/karma.conf.js b/karma.conf.js @@ -169,7 +169,7 @@ module.exports = function(config) {
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
- logLevel: process.env.ABLY_LOG_LEVEL,
+ logLevel: config.LOG_WARN,
// enable / dis... | 12 |
diff --git a/src/traces/splom/index.js b/src/traces/splom/index.js @@ -74,6 +74,11 @@ function calc(gd, trace) {
}
}
+ // augment options with proper upper/lower halves
+ if(!trace.showupperhalf) opts.upper = false;
+ if(!trace.showlowerhalf) opts.lower = false;
+ if(!trace.diagonal.visible) opts.diagonal = false;
+
va... | 9 |
diff --git a/src/vdom/diff.js b/src/vdom/diff.js @@ -40,7 +40,7 @@ export function diff(dom, vnode, context, mountAll, parent, componentRoot) {
// when first starting the diff, check if we're diffing an SVG or within an SVG
isSvgMode = parent!=null && parent.ownerSVGElement!==undefined;
- // hydration is inidicated by ... | 1 |
diff --git a/src/sdk/conference/channel.js b/src/sdk/conference/channel.js @@ -104,7 +104,9 @@ export class ConferencePeerConnectionChannel extends EventDispatcher {
}
this._options = options;
const mediaOptions = {};
- if (stream.mediaStream.getAudioTracks().length > 0) {
+ this._createPeerConnection();
+ if (stream.m... | 11 |
diff --git a/boilerplate/test/contract_spec.js b/boilerplate/test/contract_spec.js var assert = require('assert');
-var Embark = require('embark');
-var EmbarkSpec = Embark.initTests();
-var web3 = EmbarkSpec.web3;
+var EmbarkSpec = require('embark/lib/core/test.js');
+
// describe("SimpleStorage", function() {
// befo... | 3 |
diff --git a/.travis.yml b/.travis.yml @@ -20,7 +20,7 @@ before_script:
- DIST=./dist/debug ./bin/fauxton &
- sleep 30
script:
- - ./node_modules/grunt-cli/bin/grunt nightwatch
+ - travis_retry ./node_modules/.bin/grunt nightwatch
after_script:
- npm run docker:down
| 4 |
diff --git a/articles/architecture-scenarios/implementations/spa-api/spa-implementation-angular2.md b/articles/architecture-scenarios/implementations/spa-api/spa-implementation-angular2.md @@ -428,4 +428,4 @@ public unscheduleRenewal() {
}
```
-Finally you need to initiate the schedule renewal. This can be done by call... | 1 |
diff --git a/public/app/js/cbus-data.js b/public/app/js/cbus-data.js @@ -564,9 +564,7 @@ cbus.broadcast.listen("startFeedsImport", function(e) {
}
});
}
- remote.dialog.showMessageBox(remote.getCurrentWindow(), {
- message: "Subscriptions now importing. May take time to gather all necessary information."
- });
+ cbus.u... | 14 |
diff --git a/src/components/Calendar.js b/src/components/Calendar.js @@ -191,7 +191,7 @@ class Calendar extends React.Component {
return (
<a
- aria-label={day.format('dddd, MMMM Do, YYYY')}
+ aria-label={`${day.format('dddd, MMMM Do, YYYY')}${isSelectedDay ? ', Currently Selected' : ''}`}
className='calendar-day'
id={... | 9 |
diff --git a/camera-manager.js b/camera-manager.js @@ -140,6 +140,8 @@ class CameraManager extends EventTarget {
update(timeDiff) {
const localPlayer = metaversefile.useLocalPlayer();
+ const startMode = this.getMode();
+
let newVal = cameraOffsetTargetZ;
let hasIntersection = false;
@@ -230,6 +232,15 @@ class CameraMa... | 0 |
diff --git a/ext/abp-filter-parser-modified/abp-filter-parser.js b/ext/abp-filter-parser-modified/abp-filter-parser.js @@ -455,12 +455,15 @@ function matchOptions (filterOptions, input, contextParams, currentHost) {
subdomains are also considered "same origin hosts" for the purposes of thirdParty and domain list checks... | 7 |
diff --git a/src/parser/character/ac.js b/src/parser/character/ac.js @@ -98,10 +98,12 @@ function getUnarmoredAC(modifiers, character) {
// });
// }
+ const ignoreDex = modifiers.some((modifier) => modifier.type === "ignore" && modifier.subType === "unarmored-dex-ac-bonus");
+
const maxUnamoredDexMods = modifiers.filte... | 7 |
diff --git a/edit.js b/edit.js @@ -303,15 +303,18 @@ const _makePlanetMesh = (tileScale = 1) => {
const mesh = new THREE.Mesh(geometry, material);
return mesh;
};
+const planetContainer = new THREE.Object3D();
+scene.add(planetContainer);
+
const planetMesh = _makePlanetMesh(0.95);
-// planetMesh.position.x = -10;
plan... | 0 |
diff --git a/website/ops.py b/website/ops.py @@ -637,8 +637,8 @@ def searchEntries(dictDB: Connection, configs: Configs, doctype: str, searchtext
results = sortEntries(configs, results, reverse=sortdesc)
total = len(results)
- if (limit is not None and limit > 0):
- results = results[0:limit]
+ if (limit is not None an... | 1 |
diff --git a/generators/entity-server/templates/src/test/gatling/user-files/simulations/EntityGatlingTest.scala.ejs b/generators/entity-server/templates/src/test/gatling/user-files/simulations/EntityGatlingTest.scala.ejs @@ -38,7 +38,7 @@ class <%= entityClass %>GatlingTest extends Simulation {
// Log failed HTTP reque... | 14 |
diff --git a/imports/startup/both/modules/metamask.js b/imports/startup/both/modules/metamask.js @@ -45,9 +45,7 @@ const _web3 = (activateModal) => {
return false;
}
if (!web3) {
- // We don't know window.web3 version, so we use our own instance of web3
- // with provider given by window.web3
- web3 = new Web3(window.w... | 9 |
diff --git a/routes/profile.js b/routes/profile.js @@ -58,6 +58,7 @@ router.post("/mod/ajax/processavatarrequest", middleware.isLoggedIn, middleware.
avatarRequest.findById(req.body.avatarreqid).exec(function(err, foundReq){
if(err){console.log(err);}
else{
+ if(foundReq){
foundReq.processed = true;
foundReq.modComment... | 1 |
diff --git a/tasks/util/constants.js b/tasks/util/constants.js @@ -124,7 +124,7 @@ module.exports = {
licenseSrc: [
'/**',
- '* Copyright 2012-' + year + ', Plotly, Inc.',
+ '* Copyright 2012-' + '2020' + ', Plotly, Inc.',
'* All rights reserved.',
'*',
'* This source code is licensed under the MIT license found in the... | 12 |
diff --git a/app/components/Account/CreateAccountPassword.jsx b/app/components/Account/CreateAccountPassword.jsx @@ -5,7 +5,6 @@ import AccountActions from "actions/AccountActions";
import AccountStore from "stores/AccountStore";
import AccountNameInput from "./../Forms/AccountNameInput";
import WalletDb from "stores/W... | 14 |
diff --git a/civictechprojects/static/css/partials/_AboutProject.scss b/civictechprojects/static/css/partials/_AboutProject.scss .AboutProjects_tabs {
clear: both;
display:flex;
+ flex-direction: row; // column mobile, row desktop
flex-wrap: wrap;
justify-self: flex-start;
align-self: flex-end;
.AboutProjects-positions... | 12 |
diff --git a/token-metadata/0x827Eed050df933F6fda3A606b5F716cec660ECBa/metadata.json b/token-metadata/0x827Eed050df933F6fda3A606b5F716cec660ECBa/metadata.json "symbol": "BD",
"address": "0x827Eed050df933F6fda3A606b5F716cec660ECBa",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}
... | 3 |
diff --git a/src/abstract-ops/testing-comparison.mjs b/src/abstract-ops/testing-comparison.mjs @@ -263,7 +263,7 @@ export function AbstractRelationalComparison(x, y, LeftFirst = true) {
}
let k = 0;
while (true) {
- if (px.stringValue()[k] !== py.stringValue[k]) {
+ if (px.stringValue()[k] !== py.stringValue()[k]) {
br... | 1 |
diff --git a/components/mapbox/open-gps.js b/components/mapbox/open-gps.js @@ -11,7 +11,6 @@ function OpenGPS({lat, lon, isSafariBrowser}) {
<button
type='button'
className='mapboxgl-ctrl'
- title='Ouvrir le GPS'
>
<MapPin size={18} />
</button>
| 2 |
diff --git a/admin/client/App/screens/Item/actions.js b/admin/client/App/screens/Item/actions.js @@ -136,7 +136,7 @@ export function deleteItem (id, router) {
}
// TODO Proper error handling
if (err) {
- alert('Error deleting item, please try again!');
+ alert(err.error || 'Error deleting item, please try again!');
} e... | 3 |
diff --git a/src/plots/smith/helpers.js b/src/plots/smith/helpers.js @@ -59,17 +59,6 @@ function smith(a) {
return circleCircleIntersect(reactanceCircle(X), resistanceCircle(R));
}
-function smithInvert(a) {
- var x = a[0];
- var y = a[1];
-
- if(hypot(x, y) > 1) return;
- return [
- (1 - x * x - y * y) / (x * x - 2 * ... | 2 |
diff --git a/src/core/operations/MicrosoftScriptDecoder.mjs b/src/core/operations/MicrosoftScriptDecoder.mjs @@ -24,6 +24,13 @@ class MicrosoftScriptDecoder extends Operation {
this.inputType = "string";
this.outputType = "string";
this.args = [];
+ this.checks = [
+ {
+ pattern: "#@~\\^.{6}==(.+).{6}==\\^#~@",
+ flags... | 0 |
diff --git a/android/src/main/java/com/RNFetchBlob/Utils/PathResolver.java b/android/src/main/java/com/RNFetchBlob/Utils/PathResolver.java @@ -59,6 +59,14 @@ public class PathResolver {
return getDataColumn(context, contentUri, selection, selectionArgs);
}
+ else if ("content".equalsIgnoreCase(uri.getScheme())) {
+
+ /... | 0 |
diff --git a/docs/topics/multiplatform-mobile/multiplatform-mobile-understand-project-structure.md b/docs/topics/multiplatform-mobile/multiplatform-mobile-understand-project-structure.md @@ -264,10 +264,10 @@ The configuration of Android library is stored in the `android {}` top-level blo
```kotlin
android {
- compileS... | 14 |
diff --git a/lib/cli.js b/lib/cli.js @@ -330,7 +330,7 @@ exports.run = async () => { // eslint-disable-line complexity
require: arrify(combined.require),
serial: combined.serial,
snapshotDir: combined.snapshotDir ? path.resolve(projectDir, combined.snapshotDir) : null,
- timeout: combined.timeout,
+ timeout: combined.t... | 12 |
diff --git a/src/setattr.js b/src/setattr.js @@ -14,6 +14,8 @@ export const setAttr = (view, arg1, arg2) => {
setStyle(el, arg2);
} else if (isSVG && isFunction(arg2)) {
el[arg1] = arg2;
+ } else if (arg1 === 'dataset') {
+ setData(el, arg2);
} else if (!isSVG && (arg1 in el || isFunction(arg2))) {
el[arg1] = arg2;
} e... | 0 |
diff --git a/app/src/RoomClient.js b/app/src/RoomClient.js @@ -810,6 +810,8 @@ export default class RoomClient
'changeAudioDevice() | new selected webcam [device:%o]',
device);
+ this._micProducer.track.stop();
+
logger.debug('changeAudioDevice() | calling getUserMedia()');
const stream = await navigator.mediaDevices.g... | 3 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/editors/code-editors/monaco.js b/packages/node_modules/@node-red/editor-client/src/js/ui/editors/code-editors/monaco.js @@ -150,19 +150,6 @@ RED.editor.codeEditor.monaco = (function() {
function init(options) {
- //Handles "Uncaught (in promise) Cance... | 2 |
diff --git a/test/jasmine/assets/custom_matchers.js b/test/jasmine/assets/custom_matchers.js @@ -64,25 +64,11 @@ var matchers = {
};
},
- // toBeCloseTo... but for arrays
toBeCloseToArray: function() {
return {
compare: function(actual, expected, precision, msgExtra) {
- precision = coercePosition(precision);
-
- var p... | 0 |
diff --git a/packages/app/src/components/Admin/PluginsExtension/PluginInstallerForm.tsx b/packages/app/src/components/Admin/PluginsExtension/PluginInstallerForm.tsx import React, { useCallback } from 'react';
-import { useTranslation } from 'react-i18next';
-
-import { toastSuccess, toastError } from '~/client/util/api... | 4 |
diff --git a/server/bootstrap/broadcast.ts b/server/bootstrap/broadcast.ts @@ -5,6 +5,6 @@ export default function(port = 443, httpOnly) {
name: `Thorium-${require("os").hostname()}`,
type: "thorium-http",
port: port,
- txt: {https: !httpOnly},
+ txt: {https: String(process.env.NODE_ENV === "production" && !httpOnly)},... | 1 |
diff --git a/environment/core/mapgen/SolarSystem.cpp b/environment/core/mapgen/SolarSystem.cpp @@ -85,6 +85,8 @@ namespace mapgen {
const auto max_radius = static_cast<int>(
std::sqrt(std::min(map.map_width, map.map_height)) / 2);
+ const auto min_separation = static_cast<int>(
+ std::sqrt(std::min(map.map_width, map.m... | 11 |
diff --git a/app/core/tokenList.json b/app/core/tokenList.json "image":
"https://rawgit.com/CityOfZion/neo-tokens/master/assets/svg/tnc.svg"
},
- "TOLL": {
- "symbol": "TOLL",
+ "BRDG": {
+ "symbol": "BRDG",
"companyName": "Bridge Protocol",
"type": "NEP5",
"networks": {
"1": {
"name": "Bridge Protocol",
- "hash": "78f... | 3 |
diff --git a/packages/reason-fela/src/Fela.re b/packages/reason-fela/src/Fela.re @@ -26,6 +26,7 @@ module RendererConfig = {
~selectorPrefix=?,
~keyframePrefixes=?,
~mediaQueryOrder=?,
+ ~sortMediaQuery=?,
~filterClassName=?,
~plugins=?,
~enhancers=?,
@@ -38,6 +39,7 @@ module RendererConfig = {
"devMode": devMode,
"key... | 1 |
diff --git a/src/static/js/ace2_inner.js b/src/static/js/ace2_inner.js @@ -556,7 +556,7 @@ function Ace2Inner(){
{
doesWrap = newVal;
var dwClass = "doesWrap";
- setClassPresence(root, "doesWrap", doesWrap);
+ root.classList.toggle('doesWrap', doesWrap);
scheduler.setTimeout(function()
{
inCallStackIfNecessary("setWrap... | 14 |
diff --git a/src/components/Header.js b/src/components/Header.js @@ -80,7 +80,7 @@ const Header = ({ context, setContext }) => {
const usingSparkComponents = useUsingSparkData().components.map(page => (
{
text: page.node.frontmatter.title,
- to: `/using-spark/${page.node.parent.name}`,
+ to: `/using-spark/components/${... | 3 |
diff --git a/packages/vulcan-lib/lib/server/apollo-server/context.js b/packages/vulcan-lib/lib/server/apollo-server/context.js @@ -86,7 +86,7 @@ const getUser = async loginToken => {
}
// @see https://www.apollographql.com/docs/react/recipes/meteor#Server
-const setupAuthToken = async (context, req) => {
+export const ... | 11 |
diff --git a/src/traces/scatterpolar/hover.js b/src/traces/scatterpolar/hover.js @@ -19,8 +19,6 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode) {
var newPointData = scatterPointData[0];
// hovering on fill case
- // TODO do we need to constrain the scatter point data further (like for
- // te... | 0 |
diff --git a/lib/waterline/utils/query/private/normalize-criteria.js b/lib/waterline/utils/query/private/normalize-criteria.js @@ -301,6 +301,9 @@ module.exports = function normalizeCriteria(criteria, modelIdentity, orm, meta)
'usage has changed. Now, to calculate the minimum value of an attribute '+
'across multiple r... | 0 |
diff --git a/dashboard/basicPreferences.source.ts b/dashboard/basicPreferences.source.ts @@ -49,7 +49,7 @@ export const basicPreferencesPane: PaneDefinition = {
ui:label "I am a Developer".
`
- const preferencesForm = kb.sym('https://solid.github.io/solid-panes/dashboard/basicPreferencesForm.ttl#this')
+ const preferen... | 4 |
diff --git a/server/workers/api/src/apis/export.py b/server/workers/api/src/apis/export.py @@ -25,7 +25,7 @@ def transform2bibtex(metadata):
"author": author,
"year": year,
"doi": doi,
- "published_in": published_in,
+ "journal": published_in,
"url": url,
"ENTRYTYPE": "article",
"ID": id
| 10 |
diff --git a/src/technologies.json b/src/technologies.json "cookies": {
"VtexFingerPrint": "",
"VtexWorkspace": "",
- "vtex_session": ""
+ "vtex_session": "",
+ "VtexStoreVersion": ""
},
"description": "VTEX is an ecommerce software that manages multiple online stores.",
"headers": {
"powered": "vtex"
},
"icon": "VTEX.... | 7 |
diff --git a/sandbox/src/Home.js b/sandbox/src/Home.js @@ -11,9 +11,7 @@ function HomeWithHistory({ history }) {
window[instanceName]("event", {
viewStart: true,
xdm: {
- eventType: "page-view",
- url: window.location.href,
- name: loc.pathname.substring(1)
+ eventType: "page-view"
}
});
}
| 2 |
diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js @@ -347,7 +347,7 @@ function formatReportLastMessageText(lastMessageText) {
function getDefaultAvatar(login = '') {
// There are 8 possible default avatars, so we choose which one this user has based
// on a simple hash of their login (which is converted fr... | 8 |
diff --git a/module/modifier-bucket/tooltip-window.js b/module/modifier-bucket/tooltip-window.js @@ -51,8 +51,8 @@ export default class ModifierBucketEditor extends Application {
get journals() {
let journals = Array.from(game.journal)
journals = game.data.journal
- .filter(it => ModifierBucketJournals.getJournalIds().... | 14 |
diff --git a/runtime.js b/runtime.js @@ -561,11 +561,22 @@ const _loadScn = async (file, opts) => {
let physicsIds = [];
for (const object of objects) {
- let {name, position = [0, 0, 0], quaternion = [0, 0, 0, 1], scale = [1, 1, 1], start_url, physics_url = null, optimize = false, physics = false} = object;
+ let {nam... | 0 |
diff --git a/lib/node_modules/@stdlib/_tools/test-cov/tape-istanbul/bin/cli b/lib/node_modules/@stdlib/_tools/test-cov/tape-istanbul/bin/cli @@ -7,6 +7,7 @@ var join = require( 'path' ).join;
var resolve = require( 'path' ).resolve;
var readFileSync = require( '@stdlib/fs/read-file' ).sync;
var CLI = require( '@stdlib/... | 4 |
diff --git a/node_common/managers/viewer.js b/node_common/managers/viewer.js @@ -83,8 +83,12 @@ export const getById = async ({ id }) => {
library: user.data.library,
// TODO(jim): Move this elsewhere.
- allow_automatic_data_storage: user.data.allow_automatic_data_storage,
- allow_encrypted_data_storage: user.data.allo... | 1 |
diff --git a/core/pipeline-driver/lib/tasks/task-runner.js b/core/pipeline-driver/lib/tasks/task-runner.js @@ -49,6 +49,9 @@ class TaskRunner extends EventEmitter {
this._stateManager.on(Events.TASKS.FAILED, (task) => {
this._handleTaskEvent(task);
});
+ this._stateManager.on(Events.TASKS.STALLED, (task) => {
+ this._h... | 0 |
diff --git a/physics-manager.js b/physics-manager.js @@ -30,11 +30,11 @@ const localMatrix = new THREE.Matrix4();
const physicsManager = new EventTarget();
const physicsUpdates = [];
-const _makePhysicsObject = (physicsId, position, quaternion/*, scale*/) => {
+const _makePhysicsObject = (physicsId, position, quaternio... | 0 |
diff --git a/packages/neutrine/src/future/side/style.scss b/packages/neutrine/src/future/side/style.scss &-content {
display: block;
//display: none;
- width: 400px; //Default width
- height: 100%;
+ //width: 400px; //Default width
+ //height: 100%;
background-color: #ffffff;
border-radius: 0px;
position: fixed;
- top:... | 11 |
diff --git a/screenshot.html b/screenshot.html // camera.lookAt(model.boundingBoxMesh.getWorldPosition(new THREE.Vector3()));
+ /* const ambientLight = new THREE.AmbientLight(0xFFFFFF, 0.1);
+ scene.add(ambientLight); */
+ const directionalLight = new THREE.DirectionalLight(0xFFFFFF, 1);
+ directionalLight.position.set... | 0 |
diff --git a/core.js b/core.js @@ -1198,7 +1198,7 @@ const _makeWindow = (options = {}, parent = null, top = null) => {
}
return RequestCamera.apply(this, arguments);
})(nativeMlProxy.RequestCamera);
- nativeMlProxy.RequestMeshing = (RequestMeshing => function(cb) {
+ nativeMlProxy.RequestMesh = (RequestMesh => functio... | 10 |
diff --git a/angular/projects/spark-angular/src/lib/components/inputs/sprk-checkbox-item/sprk-checkbox-item.component.ts b/angular/projects/spark-angular/src/lib/components/inputs/sprk-checkbox-item/sprk-checkbox-item.component.ts @@ -61,8 +61,8 @@ export class SprkCheckboxItemComponent implements OnInit {
idString: st... | 3 |
diff --git a/tests/e2e/plugins/reset.php b/tests/e2e/plugins/reset.php @@ -21,17 +21,4 @@ register_activation_hook( __FILE__, static function () {
}
( new Reset( new Context( GOOGLESITEKIT_PLUGIN_MAIN_FILE ) ) )->all();
-
- /**
- * Remove anything left behind.
- * @link https://github.com/google/site-kit-wp/issues/351
... | 2 |
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -20,6 +20,7 @@ jobs:
git switch -c master
git config --global user.email "argyle@google.com"
git config --global user.name "Adam Argyle"
+ git push --set-upstream origin master
- name: Install & Build
run: |
| 12 |
diff --git a/public/app/js/global-requires.js b/public/app/js/global-requires.js @@ -32,7 +32,7 @@ const sanitizeHTML = require("sanitize-html")
sanitizeHTML.defaults.allowedTags = [
"h1", "h2", "h3", "h4", "h5", "h6", "blockquote", "p", "a", "ul", "ol", "nl",
"li", "b", "i", "strong", "em", "strike", "code", "hr", "br... | 11 |
diff --git a/package.json b/package.json "vinyl-fs": "^3.0.3",
"web-streams-polyfill": "^3.0.2",
"webpack": "^5.23.0",
- "webpack-stream": "~6.1.2",
+ "webpack-stream": "^6.1.2",
"wintersmith": "^2.5.0",
"yargs": "^11.1.1"
},
| 11 |
diff --git a/assets/js/googlesitekit/widgets/default-areas.js b/assets/js/googlesitekit/widgets/default-areas.js * limitations under the License.
*/
-/**
- * Internal dependencies
- */
-import { isFeatureEnabled } from '../../features';
-
export const AREA_DASHBOARD_ALL_TRAFFIC = 'dashboardAllTraffic';
export const ARE... | 2 |
diff --git a/src/resources/Fetcher.js b/src/resources/Fetcher.js @@ -5,6 +5,7 @@ const https = require('https');
const logger = require('../Logger');
const retryCodes = [429].concat((process.env.JSON_CACHE_RETRY_CODES || '').split(',').map(code => parseInt(code.trim(), 10)));
+const redirectCodes = [302, 301].concat((p... | 9 |
diff --git a/token-metadata/0xE48972fCd82a274411c01834e2f031D4377Fa2c0/metadata.json b/token-metadata/0xE48972fCd82a274411c01834e2f031D4377Fa2c0/metadata.json "symbol": "2KEY",
"address": "0xE48972fCd82a274411c01834e2f031D4377Fa2c0",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/src/lib/utils/asyncStorage.js b/src/lib/utils/asyncStorage.js import AsyncStorage from '@react-native-async-storage/async-storage'
-import { isFunction } from 'lodash'
+import { isArray, isEmpty, isFunction } from 'lodash'
import { AB_TESTING, DESTINATION_PATH, INVITE_CODE, IS_FIRST_VISIT } from '../consta... | 0 |
diff --git a/assets/js/modules/adsense/datastore/report.test.js b/assets/js/modules/adsense/datastore/report.test.js @@ -112,7 +112,7 @@ describe( 'modules/adsense report', () => {
data: { status: 500 },
};
fetchMock.getOnce(
- /^\/google-site-kit\/v1\/modules\/adsense\/data\/earnings/,
+ /^\/google-site-kit\/v1\/modul... | 1 |
diff --git a/src/components/withDelayToggleButtonState.js b/src/components/withDelayToggleButtonState.js @@ -4,10 +4,10 @@ import getComponentDisplayName from '../libs/getComponentDisplayName';
const withDelayToggleButtonStatePropTypes = {
/** A value whether the button state is complete */
- isButtonStateComplete: Pro... | 10 |
diff --git a/google-site-kit.php b/google-site-kit.php @@ -30,7 +30,6 @@ define( 'GOOGLESITEKIT_VERSION', '1.84.0' );
define( 'GOOGLESITEKIT_PLUGIN_MAIN_FILE', __FILE__ );
define( 'GOOGLESITEKIT_PHP_MINIMUM', '5.6.0' );
define( 'GOOGLESITEKIT_WP_MINIMUM', '4.7.0' );
-define( 'GOOGLESITEKIT_WORDPRESS_VERSION', get_blogi... | 10 |
diff --git a/tools/subgraph/subgraph.template.yaml b/tools/subgraph/subgraph.template.yaml @@ -23,7 +23,7 @@ dataSources:
- Swap
abis:
- name: SwapContract
- file: ../deployer/build/contracts/Swap.json
+ file: ./abis/Swap.json
eventHandlers:
- event: AuthorizeSender(indexed address,indexed address)
handler: handleAutho... | 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.