code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/articles/migrations/index.md b/articles/migrations/index.md @@ -25,6 +25,29 @@ If you need help with the migration, create a ticket in our [Support Center](${e
Current migrations are listed below, newest first. For migrations that have already been enabled see [Past Migrations](#past-migrations).
+### Whit... | 0 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,14 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.36.1] -- 2018-04-18
+
+### Fixed
+- Fix `scattergl` in dist and CDN bundles
+ (due to `browser-pack-flat` discrepancy introduced in 1... | 3 |
diff --git a/src/web/store/index.js b/src/web/store/index.js @@ -69,6 +69,10 @@ const persist = (data) => {
};
const normalizeState = (state) => {
+ //
+ // Normalize workspace widgets
+ //
+
// Keep default widgets unchanged
const defaultList = get(defaultState, 'workspace.container.default.widgets');
set(state, 'work... | 1 |
diff --git a/src/kiri-mode/cam/topo.js b/src/kiri-mode/cam/topo.js @@ -212,38 +212,7 @@ class Topo {
lastP = undefined;
}
- function rastering(slices) {
- if (!topo.raster) {
- console.log(widget.id, 'topo raster cached');
- return topo.box;
- }
-
- topo.raster = false;
- topo.box = new THREE.Box2();
-
- let gridx = 0;... | 2 |
diff --git a/articles/quickstart/native/ionic/02-custom-login.md b/articles/quickstart/native/ionic/02-custom-login.md @@ -22,7 +22,7 @@ If you are using social logins, you can also launch the login screen for a parti
To implement a custom login screen, the **auth0.js** library and **angular-auth0** wrapper are require... | 3 |
diff --git a/token-metadata/0x3408B204d67BA2dBcA13b9C50e8a45701d8a1cA6/metadata.json b/token-metadata/0x3408B204d67BA2dBcA13b9C50e8a45701d8a1cA6/metadata.json "symbol": "SVB",
"address": "0x3408B204d67BA2dBcA13b9C50e8a45701d8a1cA6",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/core/Core.js b/src/core/Core.js @@ -277,7 +277,7 @@ class Uppy {
})
.catch((err) => {
this.emit('informer', err, 'error', 5000)
- Promise.reject(`onBeforeFileAdded: ${err}`)
+ return Promise.reject(`onBeforeFileAdded: ${err}`)
})
}
@@ -684,7 +684,10 @@ class Uppy {
this.emit('core:success', waitingFile... | 0 |
diff --git a/src/core/ChefWorker.js b/src/core/ChefWorker.js @@ -112,6 +112,16 @@ async function bake(data) {
})
});
} catch (err) {
+ if (err instanceof DOMException) {
+ self.postMessage({
+ action: "bakeError",
+ data: {
+ error: err.message,
+ id: data.id,
+ inputNum: data.inputNum
+ }
+ });
+ } else {
self.postMes... | 0 |
diff --git a/demos/generator/typed.html b/demos/generator/typed.html <link rel="stylesheet" href="style.css">
<script type="text/javascript" src="../../blockly_uncompressed.js"></script>
-<!--
- <script type="text/javascript" src="../../blocks_compressed.js"></script>
--->
+<!-- <script type="text/javascript" src="../.... | 2 |
diff --git a/test/docs/validation.test.js b/test/docs/validation.test.js @@ -499,7 +499,7 @@ describe('validation docs', function() {
* you try to explicitly `$unset` the key.
*/
- it('Update Validator Paths', function(done) {
+ it('Update Validators Only Run On Updated Paths', function(done) {
// acquit:ignore:start
v... | 10 |
diff --git a/api/test/__snapshots__/community.test.js.snap b/api/test/__snapshots__/community.test.js.snap @@ -94,20 +94,20 @@ Object {
"members": Object {
"edges": Array [
Object {
- "cursor": "My0x",
+ "cursor": "Mi0x",
"node": Object {
"isBlocked": false,
"isMember": true,
"isModerator": false,
"isOwner": false,
- "... | 1 |
diff --git a/package.json b/package.json "build:js": "npm-run-all build:lib build:bundle",
"build:lib": "node ./bin/build-lib.js",
"build": "npm-run-all --parallel build:js build:css build:companion --serial build:gzip size",
- "clean": "rm -rf packages/*/lib packages/@uppy/*/lib && rm -rf packages/uppy/dist",
+ "clean... | 0 |
diff --git a/articles/quickstart/webapp/aspnet-core/05-user-profile.md b/articles/quickstart/webapp/aspnet-core/05-user-profile.md @@ -103,6 +103,12 @@ Added to that, none of the user's profile details will be returned in the `id_to
Once Auth0 passed back the `name` claim, you will have to retrieve the value of the `na... | 3 |
diff --git a/src/parser/features/actions.js b/src/parser/features/actions.js @@ -376,6 +376,7 @@ function getAttackActions(ddb, character) {
function getOtherActions(ddb, character, items) {
const actions = [ddb.character.actions.race, ddb.character.actions.class, ddb.character.actions.feat, getCustomActions(ddb, false... | 9 |
diff --git a/package.json b/package.json "test": "jest",
"coverage": "jest --coverage",
"codecov": "codecov",
- "lint": "eslint --cache --ext .jsx --ext .js packages/"
+ "lint": "eslint --cache --ext .jsx --ext .js packages/",
+ "openneuro": "node packages/openneuro-cli/src"
},
"devDependencies": {
"babel-eslint": "8.2... | 11 |
diff --git a/packages/app/src/components/SubscribeButton.tsx b/packages/app/src/components/SubscribeButton.tsx import React, { useState, FC } from 'react';
+import { useTranslation } from 'react-i18next';
+import { UncontrolledTooltip } from 'reactstrap';
import { withUnstatedContainers } from './UnstatedUtils';
import... | 12 |
diff --git a/package.json b/package.json "lint": "lerna run lint --stream --no-bail",
"lint:fix": "lerna run lint:fix --stream --no-bail",
"bootstrap": "npm install && lerna bootstrap && lerna run --stream bootstrap",
- "version": "lerna version --exact --preid beta --force-publish",
+ "version": "lerna version --exact... | 2 |
diff --git a/test/index.js b/test/index.js @@ -21,6 +21,7 @@ import "./tests/operations/Code.js";
import "./tests/operations/Compress.js";
import "./tests/operations/DateTime.js";
import "./tests/operations/FlowControl.js";
+import "./tests/operations/Hash.js";
import "./tests/operations/Image.js";
import "./tests/oper... | 0 |
diff --git a/best-practices.md b/best-practices.md @@ -204,12 +204,11 @@ ended up doing. Following these recommendations makes for more legible catalogs.
1. Root documents (catalogs / collections) should be at the root of a directory tree containing the static catalog.
2. Catalogs that are not also Collections should b... | 2 |
diff --git a/packages/examples/pages/linking/index.js b/packages/examples/pages/linking/index.js @@ -20,8 +20,10 @@ export default class LinkingPage extends PureComponent {
<Text
accessibilityRole="link"
href="https://mathiasbynens.github.io/rel-noopener/malicious.html"
+ hrefAttrs={{
+ target: '_blank'
+ }}
style={sty... | 1 |
diff --git a/packages/titus-kitchen-sink-backend/docker/docker-compose-dev.yml b/packages/titus-kitchen-sink-backend/docker/docker-compose-dev.yml @@ -15,7 +15,7 @@ services:
networks:
- titus
volumes:
- # - ../pgdata:/var/lib/postgresql/data
+ - ../pgdata:/var/lib/postgresql/data
- ./db/initdb:/docker-entrypoint-initd... | 13 |
diff --git a/_src/_data/sheets.js b/_src/_data/sheets.js @@ -7,6 +7,7 @@ const fetch = require('node-fetch')
const { format, utcToZonedTime } = require('date-fns-tz')
const getJson = url => fetch(url).then(res => res.json())
+
function dateStr(date) {
const pattern = "M/dd HH:mm 'ET'"
const timeZone = 'America/New_York... | 9 |
diff --git a/src/object.coffee b/src/object.coffee @@ -52,6 +52,13 @@ createTestDoublesForFunctionNames = (names) ->
, {}
createTestDoubleViaProxy = (name, config) ->
+ if typeof Proxy == 'undefined'
+ throw new Error("""
+ The current runtime does not have Proxy support.
+
+ Did you mean `td.object([#{name}])`?
+ """)... | 7 |
diff --git a/compose/basic-auth-compose.yml b/compose/basic-auth-compose.yml @@ -3,7 +3,7 @@ version: '3.0'
services:
api:
environment:
- - SESSION_SECRET=_session_secret_
+ - SESSION_SECRET=${SESSION_SECRET:-_super_secret_session_secret_needs_to_be_long_}
- AUTH_ENABLED=true
- AUTH_USER=${AUTH_USER:-arty}
- AUTH_PASSW... | 11 |
diff --git a/index.html b/index.html </li>
<li class="dropdown">
<div class="btn-group navbar-btn">
+ <a href="https://www.wikidata.org/wiki/Wikidata:Tools" target="_blank" class="btn btn-default">
+ <span class="glyphicon glyphicon-cog" aria-hidden="true"></span> <span data-i18n="wdqs-app-button-more-tools" id="tools-... | 7 |
diff --git a/aleph/views/cache.py b/aleph/views/cache.py @@ -70,11 +70,14 @@ def cache_response(resp):
resp.headers['X-Accel-Buffering'] = 'no'
if not request._http_cache:
+ resp.cache_control.no_cache = True
return resp
if request.method != 'GET' or resp.status_code != 200:
+ resp.cache_control.no_cache = True
return ... | 12 |
diff --git a/modules/@apostrophecms/piece-type/index.js b/modules/@apostrophecms/piece-type/index.js const _ = require('lodash');
-const cacheOnDemand = require('express-cache-on-demand')();
+const expressCacheOnDemand = require('express-cache-on-demand')(); C;
module.exports = {
extend: '@apostrophecms/doc-type',
@@ -... | 10 |
diff --git a/token-metadata/0xC969e16e63fF31ad4BCAc3095C616644e6912d79/metadata.json b/token-metadata/0xC969e16e63fF31ad4BCAc3095C616644e6912d79/metadata.json "symbol": "SEED",
"address": "0xC969e16e63fF31ad4BCAc3095C616644e6912d79",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/immer.js b/immer.js @@ -72,6 +72,13 @@ function immer(baseState, thunk) {
getCurrentSource(target),
prop
)
+ },
+ defineProperty(target, property, descriptor) {
+ Object.defineProperty(getOrCreateCopy(target), property, descriptor)
+ return true
+ },
+ setPrototypeOf() {
+ throw new Error("Don't even try t... | 0 |
diff --git a/spec/services/carto/organization_metadata_export_service_spec.rb b/spec/services/carto/organization_metadata_export_service_spec.rb @@ -23,37 +23,7 @@ describe Carto::OrganizationMetadataExportService do
def destroy_organization
Organization[@organization.id].destroy_cascade
end
- def import_organization_a... | 2 |
diff --git a/package.json b/package.json "name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
- "version": "0.209.1",
+ "version": "0.209.2",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
| 6 |
diff --git a/aura-impl/src/main/java/org/auraframework/impl/linker/AccessChecker.java b/aura-impl/src/main/java/org/auraframework/impl/linker/AccessChecker.java @@ -237,6 +237,10 @@ public class AccessChecker {
// not internal namespace && namespace allowed to be used externally && module has minVersion
return null;
}
... | 11 |
diff --git a/lib/modules/apostrophe-video-fields/views/video.html b/lib/modules/apostrophe-video-fields/views/video.html {%- import "apostrophe-schemas:macros.html" as schemas -%}
{%- import "apostrophe-ui:components/buttons.html" as buttons -%}
-
{% macro video(field) %}
{% if not field.readOnly %}<input type="text" c... | 9 |
diff --git a/assets/js/googlesitekit/data/create-settings-store.test.js b/assets/js/googlesitekit/data/create-settings-store.test.js @@ -479,7 +479,6 @@ describe( 'createSettingsStore store', () => {
storeDefinition
);
dispatch = registry.dispatch( storeDefinition.STORE_NAME );
- store = registry.stores[ storeDefinitio... | 2 |
diff --git a/src/components/routes/CheckoutApp.vue b/src/components/routes/CheckoutApp.vue <div class="_checkout-payment" v-else-if="activeStep === 2">
<transition name="fade">
- <div key="checkout-loading" v-if="!loaded" class="_checkout-loading"></div>
+ <div key="checkout-loading" v-if="cartLoading || checkoutLoadin... | 9 |
diff --git a/contracts/swap/test/Swap-unit.js b/contracts/swap/test/Swap-unit.js @@ -119,12 +119,18 @@ contract.only('Swap Unit Tests', async accounts => {
let signature = [EMPTY_ADDRESS, v, r, s, ver]
//mock maker authorizes mock taker
+ emitted(
await swap.authorize(mockTaker, Jun_06_2017T00_00_00_UTC, {
from: mockMa... | 1 |
diff --git a/src/traces/parcoords/parcoords.js b/src/traces/parcoords/parcoords.js @@ -32,19 +32,20 @@ function findExtreme(fn, values, len) {
}
function findExtremes(values, len) {
- return [
+ return fixExtremes(
findExtreme(Math.min, values, len),
findExtreme(Math.max, values, len)
- ];
+ );
}
function dimensionExte... | 0 |
diff --git a/src/adapters/icon_manager.js b/src/adapters/icon_manager.js -const iconProperties = require('@qwant/qwant-basic-gl-style/icons.yml').mappings
+const {mappings, defaultIcon, defaultColor} = require('@qwant/qwant-basic-gl-style/icons.yml')
function IconManager() {}
-IconManager.mappings = iconProperties.map(... | 12 |
diff --git a/packages/spark-extras/components/highlight-board/_highlight-board.scss b/packages/spark-extras/components/highlight-board/_highlight-board.scss @@ -54,7 +54,7 @@ $highlight-board-color: $white !default;
position: absolute;
bottom: $space-l;
left: $space-l;
- margin-right: $space-l;
+ right: $space-l;
}
.sp... | 3 |
diff --git a/styles/tokens/table.json b/styles/tokens/table.json "header": {
"background-color": {
"comment": "The background color of Secondary Table headers.",
- "value": "{black.value}",
+ "value": "{white.value}",
"file": "settings",
"themable": true
},
| 3 |
diff --git a/packages/spark/base/inputs/_labels.scss b/packages/spark/base/inputs/_labels.scss }
.sprk-b-InputContainer--huge > :first-child.sprk-b-TextInput:focus + .sprk-b-Label,
-.sprk-b-InputContainer--huge .sprk-b-TextInputIconContainer--has-text-icon .sprk-b-TextInputIconContainer .sprk-b-TextInput:focus + .sprk-... | 3 |
diff --git a/userscript.user.js b/userscript.user.js @@ -23832,13 +23832,6 @@ var $$IMU_EXPORT$$;
}
}
- /*if (false && domain === "imagesmtv-a.akamaihd.net") {
- // http://imagesmtv-a.akamaihd.net/uri/mgid:file:http:shared:mtv.com/news/wp-content/uploads/2016/09/Guess-whooooooo-1473944872.jpg
- // http://mtv.com/news/w... | 7 |
diff --git a/src/lib/actions/ActionsReport.js b/src/lib/actions/ActionsReport.js @@ -29,7 +29,14 @@ function updateReportWithNewAction(reportID, reportAction) {
// Get the comments for this report, and add the comment (being sure to sort and filter properly)
let foundExistingReportHistoryItem = false;
- Ion.get(`${IONK... | 8 |
diff --git a/content/getting-started/yaml.md b/content/getting-started/yaml.md @@ -114,10 +114,12 @@ The main sections in each workflow are described below.
### Instance Type
`instance_type:` specifies the [build machine type](../specs/machine-type) to use for the build. The supported build machines are:
-* `mac_mini`
... | 3 |
diff --git a/AlienRPGroller/script.json b/AlienRPGroller/script.json {
"name": "Alien RPG Dice Roller",
"script": "AlienRPG.js",
- "version": "1.00",
+ "version": "v1.00",
"description": "This is a Dice Roller used for Alien RPG dice rolls. It can be used in combination with the Alien RPG Character Sheet, but can also ... | 3 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.56.2",
+ "version": "0.56.3",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/Source/Scene/Cesium3DTileStyle.js b/Source/Scene/Cesium3DTileStyle.js @@ -161,6 +161,9 @@ define([
function getExpression(tileStyle, value, key) {
var defines = defaultValue(tileStyle._style, defaultValue.EMPTY_OBJECT).defines;
+ if (!defined(tileStyle._style)) {
+ tileStyle._style = {};
+ }
if (!defined(v... | 9 |
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -101,13 +101,15 @@ jobs:
ember-try-scenario: [
ember-lts-3.20,
ember-lts-3.24,
- ember-release,
- ember-beta,
ember-default-with-jquery,
ember-classic,
]
allow-failure: [false]
include:
+ - ember-try-scenario: ember-release
+ allow-failure: true
+ - em... | 11 |
diff --git a/OneWayDynamicLighting/script.json b/OneWayDynamicLighting/script.json {
"name": "One-Way Dynamic Lighting",
"script": "script.js",
- "version": "1.0",
+ "version": "1.0.1",
"previousversions": [],
"description": "# One-Way Dynamic Lighting\r\rThis script allows you to set up dynamic lighting walls that all... | 1 |
diff --git a/lib/rules/declaration-block-no-duplicate-properties/README.md b/lib/rules/declaration-block-no-duplicate-properties/README.md @@ -114,7 +114,7 @@ Ignore consecutive duplicated properties with identical values, when ignoring th
This option is useful to deal with draft CSS values while still being future pro... | 14 |
diff --git a/src/routes/kdhGuild.js b/src/routes/kdhGuild.js @@ -8,13 +8,21 @@ module.exports = class extends Route {
async get(request, response) {
const { id } = request.params;
- if (!id) return response.end("No ID parameter passed");
+ if (!id) {
+ response.statusCode = 400;
+ return response.end(JSON.stringify({ m... | 1 |
diff --git a/server/util/pushshift.py b/server/util/pushshift.py @@ -113,10 +113,14 @@ def _reddit_submission_to_row(item):
def _cached_reddit_submissions(**kwargs):
data = _reddit_submission_search(**kwargs)
cleaned_data = []
+ try:
for row in range(0, kwargs['limit']):
item = next(data)
item_data = _reddit_submission... | 9 |
diff --git a/.env.dev b/.env.dev #for dev env tell webpack.config.dev.js to install service worker
-REACT_APP_SERVICE_WORKER=false
+REACT_APP_SERVICE_WORKER=true
REACT_APP_ENV=development
REACT_APP_LOG_LEVEL=trace
-REACT_APP_SERVER_URL=http://localhost:3003
-REACT_APP_GUN_PUBLIC_URL=http://localhost:8765/gun
+REACT_APP... | 0 |
diff --git a/token-metadata/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/metadata.json b/token-metadata/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/metadata.json "symbol": "JRT",
"address": "0x8A9C67fee641579dEbA04928c4BC45F66e26343A",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/utils/staking.js b/src/utils/staking.js @@ -218,13 +218,7 @@ export class Staking {
} else {
lockupId = getLockupAccountId(accountId)
}
- try {
await (await new nearApiJs.Account(this.wallet.connection, lockupId)).state()
- } catch (e) {
- if (e.message.indexOf('is not valid') === -1) {
- throw(e)
- }
... | 13 |
diff --git a/src/core/operations/GenerateImage.mjs b/src/core/operations/GenerateImage.mjs import Operation from "../Operation.mjs";
import OperationError from "../errors/OperationError.mjs";
+import Utils from "../Utils.mjs";
import {isImage} from "../lib/FileType";
import {toBase64} from "../lib/Base64";
import jimp ... | 0 |
diff --git a/site/community-plugins.xml b/site/community-plugins.xml @@ -70,7 +70,7 @@ limitations under the License.
<doc:heading>Routing</doc:heading>
<table class="plugins">
- <r:plugin name="rabbitmq_lvc">
+ <r:plugin name="rabbitmq_lvc_exchange">
The last value exchange acts like a direct exchange (binding
keys ar... | 10 |
diff --git a/scenes/dev.scn b/scenes/dev.scn 0,
0
],
- "start_url": "../street-green/"
+ "start_url": "https://webaverse.github.io/street-green/"
},
{
"position": [
1
],
"physics": false,
- "start_url": "../silkworm/",
+ "start_url": "https://webaverse.github.io/silkworm/",
"dynamic": true
},
{
0,
1
],
- "start_url": "... | 0 |
diff --git a/editor/elfinder/php/connector.php b/editor/elfinder/php/connector.php @@ -68,9 +68,11 @@ function sanitizeName($cmd, $result, $args, $elfinder)
$files = $result['added'];
foreach ($files as $file) {
$filename = str_replace(' ', '_' , $file['name']);
+ if ($filename != $file['name']) {
$arg = array('target'... | 1 |
diff --git a/source/views/controls/TextView.js b/source/views/controls/TextView.js @@ -358,6 +358,29 @@ const TextView = Class({
this.focus();
},
+ selectAll: function () {
+ return this.set( 'selection', {
+ start: 0,
+ end: this.get( 'value' ).length,
+ });
+ },
+
+ copySelectionToClipboard: function () {
+ var didSu... | 0 |
diff --git a/app-manager.js b/app-manager.js @@ -452,6 +452,9 @@ class AppManager extends EventTarget {
srcAppManager.setBlindStateMode(false);
dstAppManager.setBlindStateMode(false);
}
+ hasApp(app) {
+ return this.apps.includes(app);
+ }
pushAppUpdates() {
this.setPushingLocalUpdates(true);
| 0 |
diff --git a/generators/server/templates/src/main/java/package/config/SecurityConfiguration.java.ejs b/generators/server/templates/src/main/java/package/config/SecurityConfiguration.java.ejs @@ -88,6 +88,7 @@ import org.springframework.security.web.csrf.CsrfFilter;
<%_ if (authenticationType === 'jwt' && applicationTyp... | 7 |
diff --git a/src/pages/Group/Backup.js b/src/pages/Group/Backup.js @@ -316,6 +316,11 @@ export default class AppList extends PureComponent {
loading: false
});
};
+ cancelLoading = () => {
+ this.setState({
+ loading: false
+ });
+ };
handleBackup = data => {
this.setState({
loading: true
@@ -344,12 +349,9 @@ export de... | 1 |
diff --git a/src/lib/DDBCharacterImport.js b/src/lib/DDBCharacterImport.js @@ -944,7 +944,8 @@ export default class DDBCharacterImport extends FormApplication {
if (e.origin?.includes(".Item.")) {
// eslint-disable-next-line no-await-in-loop
const parent = await fromUuid(e.origin);
- setProperty(e, "flags.ddbimporter.t... | 9 |
diff --git a/src/resources/views/crud/inc/form_fields_script.blade.php b/src/resources/views/crud/inc/form_fields_script.blade.php subfield.isSubfield = true;
subfield.subfieldHolder = this.name;
}else{
- subfield.wrapper = $('[data-repeatable-identifier="'+this.name+'"][data-row-number="'+rowNumber+'"]');
+ subfield.w... | 1 |
diff --git a/js/plugin/POIMarkers.js b/js/plugin/POIMarkers.js @@ -83,7 +83,8 @@ BR.PoiMarkers = L.Control.extend({
var self = this;
bootbox.prompt({
title: i18next.t('map.enter-poi-name'),
- required: true,
+ // allow empty name with client-side formatting
+ required: !BR.Browser.download,
callback: function (result) ... | 11 |
diff --git a/src/components/signup/FaceRecognition.js b/src/components/signup/FaceRecognition.js @@ -10,8 +10,9 @@ type Props = {
type State = {}
export default class FaceRecognition extends React.Component<Props, State> {
handleSubmit = () => {
- this.props.screenProps.doneCallback({ isEmailConfirmed: true })
+ this.p... | 2 |
diff --git a/packages/testkit-backend/src/skipped-tests/common.js b/packages/testkit-backend/src/skipped-tests/common.js @@ -80,7 +80,7 @@ const skippedTests = [
),
skip(
'Keeps retrying on commit despite connection being dropped',
- ifEquals('stub.retry.TestRetry.test_disconnect_on_commit')
+ ifEquals('stub.retry.test... | 14 |
diff --git a/assets/js/components/settings/SettingsActiveModule/Footer.js b/assets/js/components/settings/SettingsActiveModule/Footer.js @@ -160,16 +160,21 @@ export default function Footer( props ) {
setValue( dialogActiveKey, ! dialogActive );
}, [ dialogActive, dialogActiveKey, setValue ] );
- const handleEdit = use... | 12 |
diff --git a/src/PlayerContextProvider.js b/src/PlayerContextProvider.js @@ -130,8 +130,9 @@ class PlayerContextProvider extends Component {
// html audio element used for playback
this.audio = null;
- // bind callback methods to pass to descendant elements
this.setAudioElementRef = this.setAudioElementRef.bind(this);
... | 5 |
diff --git a/src/og/shaders/drawnode.js b/src/og/shaders/drawnode.js @@ -15,44 +15,14 @@ import { Program } from "../webgl/Program.js";
const NIGHT = `const vec3 nightStep = 10.0 * vec3(0.58, 0.48, 0.25);`;
-const __BLEND__ = `
- void blend(
- out vec4 dest,
- in sampler2D sampler,
- in vec4 tileOffset,
- in float opac... | 2 |
diff --git a/src/components/Tooltip/index.js b/src/components/Tooltip/index.js @@ -29,9 +29,8 @@ class Tooltip extends Component {
this.animation = new Animated.Value(0);
- // The child component wrapped by this Tooltip.
- // Since it's using Hoverable, there must be only one child of a Tooltip.
- this.child = null;
+ ... | 10 |
diff --git a/plugins/cindygl/src/js/Renderer.js b/plugins/cindygl/src/js/Renderer.js @@ -330,6 +330,7 @@ Renderer.prototype.render = function(a, b, sizeX, sizeY, canvaswrapper) {
Renderer.prototype.renderXR = function(viewIndex) {
if (viewIndex == 0) {
+ gl.clearColor(0.0, 0.0, 0.0, 1.0);
gl.clear(gl.COLOR_BUFFER_BIT |... | 12 |
diff --git a/Source/Scene/ClassificationModel.js b/Source/Scene/ClassificationModel.js @@ -352,7 +352,7 @@ Object.defineProperties(ClassificationModel.prototype, {
*/
readyPromise: {
get: function () {
- return this._readyPromise.promise;
+ return this._readyPromise;
},
},
| 1 |
diff --git a/token-metadata/0xF9c36C7aD7FA0f0862589c919830268d1A2581A1/metadata.json b/token-metadata/0xF9c36C7aD7FA0f0862589c919830268d1A2581A1/metadata.json "symbol": "BOA",
"address": "0xF9c36C7aD7FA0f0862589c919830268d1A2581A1",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/index.js b/index.js @@ -24,17 +24,6 @@ const dataPath = __dirname;
const canvasSymbol = Symbol();
const contexts = [];
const _windowHandleEquals = (a, b) => a[0] === b[0] && a[1] === b[1];
-const _isAttached = el => {
- for (;;) {
- if (el === el.ownerDocument.documentElement) {
- return true;
- } else if ... | 14 |
diff --git a/src/pages/index.js b/src/pages/index.js import React from 'react'
-import { Link } from 'gatsby'
+import { Link, graphql } from 'gatsby'
import get from 'lodash/get'
import Helmet from 'react-helmet'
@@ -42,7 +42,7 @@ class BlogIndex extends React.Component {
export default BlogIndex
export const pageQuery... | 0 |
diff --git a/src/traces/surface/convert.js b/src/traces/surface/convert.js @@ -546,12 +546,6 @@ proto.update = function(data) {
data._objectOffset[2]
];
- params.objectScale = [
- scaleFactor[0],
- scaleFactor[1],
- scaleFactor[2]
- ];
-
params.coords = coords;
surface.update(params);
| 2 |
diff --git a/nerdamer.core.js b/nerdamer.core.js @@ -4327,7 +4327,7 @@ var nerdamer = (function (imports) {
acsc: function (symbol) {
if (Settings.PARSE2NUMBER) {
if (symbol.isConstant())
- return new Symbol(Math.acos(symbol.invert().valueOf()));
+ return new Symbol(Math.asin(symbol.invert().valueOf()));
if (symbol.isI... | 1 |
diff --git a/config/examples/performance_sensitive.yaml b/config/examples/performance_sensitive.yaml # You should choose the fastest setjmp/longjmp for your platform.
+# With the vast majority of compilers some of the 'undefined behavior'
+# assumptions are fine, and produce smaller and faster code, so enable
+# by def... | 11 |
diff --git a/themes/5ePhb.style.less b/themes/5ePhb.style.less @@ -600,12 +600,19 @@ body {
//*****************************
// * CLASS TABLE
// *****************************/
-.page .classTable{
+.page {
+ * + .classTable.frame {
+ margin-top : 0.66cm;
+ }
+ .classTable{
th[colspan]:not([rowspan]) {
white-space : nowra... | 11 |
diff --git a/src/Components/TextField/TextFieldLabel/TextFieldLabel.js b/src/Components/TextField/TextFieldLabel/TextFieldLabel.js @@ -171,9 +171,7 @@ class TextFieldLabel extends Component {
}
const baseFontSize =
- StyleSheet.flatten(style).fontSize ||
- (Text.defaultProps || {}).fontSize ||
- 16;
+ StyleSheet.flatte... | 4 |
diff --git a/src/components/sound.js b/src/components/sound.js @@ -173,7 +173,7 @@ module.exports.Component = registerComponent('sound', {
for (i = 0; i < this.pool.children.length; i++) {
sound = this.pool.children[i];
sound.onEnded = function () {
- sound.isPlaying = false;
+ this.isPlaying = false;
self.el.emit('sou... | 12 |
diff --git a/scenes/silk-fountains.scn b/scenes/silk-fountains.scn {
"position": [
0,
- 0,
+ -10.0,
0
],
"start_url": "https://webaverse.github.io/silk-fountains/silk-fountain-01/index.js"
0,
0
],
- "start_url": "https://webaverse.github.io/atmospheric-sky/"
- },
- {
- "position": [
- 0,
- 0,
- 0
- ],
- "start_url": "h... | 0 |
diff --git a/src/components/media/README.md b/src/components/media/README.md @@ -124,13 +124,13 @@ You can easily nest media objects by including another `<b-media>` inside parent
## Vertical align
-Aside can be vertical aligned using `vertical-align` should be either `top`, `center` or `end`.
-Default is `top`.
+Aside... | 7 |
diff --git a/lib/api-ban.js b/lib/api-ban.js @@ -38,10 +38,6 @@ export function getVoiesFantoir(communeCode) {
return _fetch(`${API_BAN_URL}/api-fantoir/communes/${communeCode}/voies`)
}
-export function getVoiesCSVFantoir(communeCode) {
- return `${API_BAN_URL}/api-fantoir/communes/${communeCode}/voies.csv`
-}
-
expor... | 2 |
diff --git a/test/jasmine/tests/mapbox_test.js b/test/jasmine/tests/mapbox_test.js @@ -1329,13 +1329,13 @@ describe('@noCI, mapbox plots', function() {
expect([evtData['mapbox.center'].lon, evtData['mapbox.center'].lat]).toBeCloseToArray(center);
expect(evtData['mapbox.zoom']).toBeCloseTo(zoom);
- expect(evtData['mapbo... | 0 |
diff --git a/game.js b/game.js @@ -1332,6 +1332,7 @@ class GameManager extends EventTarget {
this.closestObject = null;
this.usableObject = null;
this.hoverEnabled = false;
+ this.mapOpen = false;
}
getMenu() {
return this.menuOpen;
@@ -1520,6 +1521,15 @@ class GameManager extends EventTarget {
}
}
+ toggleMap() {
+ th... | 0 |
diff --git a/js/format/VoiceHints.js b/js/format/VoiceHints.js this.turnInstructionMode = turnInstructionMode;
this.transportMode = transportMode;
- for (const feature of geoJson.features) {
- let voicehints = feature?.properties.voicehints;
- if (voicehints) {
- this.voicehints = voicehints;
- this.track = feature;
- ... | 9 |
diff --git a/src/elements.js b/src/elements.js @@ -541,7 +541,7 @@ _.register({
dateTypes: {
"month": /^[Y\d]{4}-[M\d]{2}$/i,
"time": /^[H\d]{2}:[M\d]{2}/i,
- "datetime-local": /^[Y\d]{4}-[M\d]{2}-[D\d]{2} [H\d]{2}:[M\d]{2}/i,
+ "datetime-local": /^[Y\d]{4}-[M\d]{2}-[D\d]{2} [H\d]{2}:[Mi\d]{2}/i,
"date": /^[Y\d]{4}-[M\... | 11 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -13,7 +13,8 @@ and fixes the following bugs:
* [Bug on not being able to see Admin Panel if not having access to Board List](https://github.com/wekan/wekan/pull/1371);
* [Bug on not able to see member avatar on sidebar activity](https://github.com/wekan/wekan/pull/1380);
* [D... | 1 |
diff --git a/services/datalad/datalad_service/common/user.py b/services/datalad/datalad_service/common/user.py @@ -2,7 +2,7 @@ def get_user_info(req):
"""Parse the name, email fields from a request."""
name = None
email = None
- if 'user' in req.context:
+ if 'user' in req.context and req.context['user']:
user = req.co... | 9 |
diff --git a/.travis.yml b/.travis.yml @@ -22,8 +22,6 @@ addons:
- google-chrome
packages:
- google-chrome-stable fluxbox
- sonarcloud:
- organization: "adobeinc"
before_script:
- export DISPLAY=:99.0
@@ -41,7 +39,6 @@ script:
- npm run allure:generate
- npm run functional
- rollup -c --environment BUILD:production && ... | 2 |
diff --git a/tests/e2e/specs/modules/analytics/write-scope-requests.test.js b/tests/e2e/specs/modules/analytics/write-scope-requests.test.js @@ -117,7 +117,6 @@ describe( 'Analytics write scope requests', () => {
interceptCreatePropertyRequest = false;
interceptCreateProfileRequest = false;
- await activatePlugin( 'e2e... | 2 |
diff --git a/css/components/app/pages/splash_detail.scss b/css/components/app/pages/splash_detail.scss justify-content: center;
background-color: $dark-pink;
border-radius: 4px 0 0 4px;
- cursor: cursor-pointer;
-
- img {
- cursor: cursor-pointer;
- }
+ cursor: pointer;
}
.detail-container {
height: 100%;
width: 100%;
... | 14 |
diff --git a/api/survey_api.py b/api/survey_api.py @@ -43,7 +43,10 @@ def update_survey(survey_id=None):
except Survey.DoesNotExist:
return abort(404)
- content = json.loads(request.values['content'])
+ # BUG: There is an unknown situation where the frontend sends a string requiring an extra
+ # deserialization operati... | 9 |
diff --git a/react/src/base/lists/SprkList.js b/react/src/base/lists/SprkList.js @@ -31,7 +31,7 @@ SprkList.defaultProps = {
};
SprkList.propTypes = {
- /** The element that will be rendered. */
+ /** Determines the type of list element is ordered or unordered. */
element: PropTypes.oneOf(['ol', 'ul']).isRequired,
/** ... | 7 |
diff --git a/docs/articles/documentation/using-testcafe/using-testcafe-docker-image.md b/docs/articles/documentation/using-testcafe/using-testcafe-docker-image.md @@ -36,6 +36,10 @@ This command takes the following parameters:
`-v //d/tests:/myTests`
+ If you are running a Windows machine with Docker Toolbox, note that... | 0 |
diff --git a/components/api-doc/tuto/result.js b/components/api-doc/tuto/result.js @@ -48,4 +48,18 @@ function Result({example, results, isLoading}) {
)
}
+Result.propTypes = {
+ example: PropTypes.string.isRequired,
+ results: PropTypes.oneOfType([
+ PropTypes.array,
+ PropTypes.object
+ ]),
+ isLoading: PropTypes.boo... | 0 |
diff --git a/lib/taiko.js b/lib/taiko.js @@ -146,7 +146,7 @@ module.exports.title = async () => {
*/
module.exports.click = click;
-async function click(selector, waitForNavigation = false, options = {}) {
+async function click(selector, waitForNavigation = true, options = {}) {
validate();
const e = await element(sele... | 12 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.