code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/sdk/conference/conference.js b/src/sdk/conference/conference.js self.dispatchEvent(evt);
break;
case 'leave':
- participant = self.participants[data.data.id];
+ participant = self.participants[data.data];
if (!participant) {
return;
}
type: 'user-left',
user: participant
});
- delete self.participants[... | 1 |
diff --git a/test-integration/samples/ngx-psql-es-noi18n-mapsid/.yo-rc.json b/test-integration/samples/ngx-psql-es-noi18n-mapsid/.yo-rc.json "clientFramework": "angularX",
"useSass": true,
"clientPackageManager": "npm",
- "testFrameworks": ["gatling", "protractor"],
+ "testFrameworks": ["gatling", "cypress"],
"jhiPrefi... | 2 |
diff --git a/docs/theming.md b/docs/theming.md @@ -10,15 +10,15 @@ Themes follow and build upon the Levels of Configuration, and employ `directives
## Deployable Themes
The following are a list of **Deployable themes**, sample `%%init%%` directives and `initialize` calls.
-1. **Base**- Designed to modified, as the name... | 10 |
diff --git a/src/modules/anchor.js b/src/modules/anchor.js @@ -75,6 +75,12 @@ export default class AnchorModule {
batchDocumentsInMerkleTree(documents) {
// Hash all documents
const leafHashes = documents.map(this.hash);
+
+ // If only one document was hashed, just return that as the root with no proofs (single anchor)... | 9 |
diff --git a/configs/apache_mxnet.json b/configs/apache_mxnet.json {
"index_name": "apache_mxnet",
"start_urls": [
- {
- "url": "https://mxnet.apache.org/get_started",
- "selectors_key": "get_started"
- },
- {
- "url": "https://mxnet.apache.org/blog",
- "selectors_key": "blog"
- },
- {
- "url": "https://mxnet.apache.or... | 13 |
diff --git a/Makefile b/Makefile +TX_VERSION ?= 2_6
+DEMO_BRANCH ?= prod-2-6
+
ANGULAR_VERSION := $(shell buildtools/get-version angular)
ESLINT_CONFIG_FILES := $(shell find * -not -path 'node_modules/*' -type f -name '.eslintrc*')
@@ -48,7 +51,6 @@ L10N_PO_FILES = \
LANGUAGES = en $(L10N_LANGUAGES)
ANGULAR_LOCALES_FIL... | 4 |
diff --git a/website/docs/guides/ldp-server.md b/website/docs/guides/ldp-server.md title: Create your first LDP server
---
-### Prerequisites
+## Setup a new Moleculer project
-docker
-docker-compose
-nodejs
-NPM
+You will need to have [NodeJS](https://nodejs.org/en/) installed on your computer.
-### Setup a new Molecu... | 7 |
diff --git a/appjs/logicjavascript.js b/appjs/logicjavascript.js @@ -4122,6 +4122,8 @@ function datecal()
var c = new Date(Date.parse(document.getElementById("datef").value));
var d = new Date(Date.parse(document.getElementById("datet").value));
var x = new Date(d.getFullYear(), d.getMonth(), 0).getDate();
+ if(d.getTi... | 1 |
diff --git a/index.js b/index.js @@ -89,7 +89,7 @@ Enforcer.config = {
useNewRefParser: false
};
-Enforcer.bundler = function (definition) {
+Enforcer.bundle = function (definition) {
if (Enforcer.config.useNewRefParser) {
const refParser = new NewRefParser(definition);
return refParser.bundle();
| 10 |
diff --git a/packages/dynamodb/index.test-d.ts b/packages/dynamodb/index.test-d.ts @@ -3,7 +3,7 @@ import { Context as LambdaContext } from 'aws-lambda'
import { DynamoDBClient } from '@aws-sdk/client-dynamodb'
import { captureAWSv3Client } from 'aws-xray-sdk'
import { expectType } from 'tsd'
-import dynamodb, { type C... | 13 |
diff --git a/src/commands/view/ComponentDrag.js b/src/commands/view/ComponentDrag.js @@ -39,24 +39,65 @@ module.exports = {
this.toggleDrag();
},
+ getTransform(transform, axis = 'x') {
+ let result = 0;
+ (transform || '').split(' ').forEach(item => {
+ const itemStr = item.trim();
+ const fn = `translate${axis.toUppe... | 11 |
diff --git a/src/components/common/EditableWordCloudDataCard.js b/src/components/common/EditableWordCloudDataCard.js @@ -31,6 +31,7 @@ const localMessages = {
modeTopicW2V: { id: 'wordcloud.editable.mode.topicW2V', defaultMessage: 'View Topic Specific Word2Vec 2D Layout' },
noTopicW2VData: { id: 'wordcloud.editable.mod... | 9 |
diff --git a/src/js/core.js b/src/js/core.js @@ -383,7 +383,6 @@ if (s.params.effect === 'cube') {
s.params.centeredSlides = false;
s.params.spaceBetween = 0;
s.params.virtualTranslate = true;
- s.params.setWrapperSize = false;
}
if (s.params.effect === 'fade' || s.params.effect === 'flip') {
s.params.slidesPerView = 1... | 5 |
diff --git a/hooks.go b/hooks.go @@ -139,12 +139,6 @@ type WorkflowHookHandler interface {
////////////////////////////////////////////////////////////////////////////////
-// RuntimeLoggerHook is responsible for adding custom hooks to the Logrus
-// logger for things like publishing to StackDriver
-type RuntimeLoggerH... | 2 |
diff --git a/lib/discordgo/restapi.go b/lib/discordgo/restapi.go @@ -744,7 +744,7 @@ func (s *Session) GuildBanCreateWithReason(guildID, userID int64, reason string,
headers := make(map[string]string)
if reason != "" {
- headers["X-Audit-Log-Reason"] = url.QueryEscape(reason)
+ headers["X-Audit-Log-Reason"] = url.PathE... | 14 |
diff --git a/assets/js/modules/analytics/index.js b/assets/js/modules/analytics/index.js @@ -199,10 +199,7 @@ export const registerWidgets = ( widgets ) => {
priority: 3,
wrapWidget: false,
},
- [
- AREA_MAIN_DASHBOARD_CONTENT_PRIMARY,
- AREA_ENTITY_DASHBOARD_CONTENT_PRIMARY,
- ]
+ [ AREA_ENTITY_DASHBOARD_CONTENT_PRIMA... | 2 |
diff --git a/src/components/Modeler.vue b/src/components/Modeler.vue @@ -605,12 +605,6 @@ export default {
}
});
- this.paper.on('all', () => {
- this.graph.getLinks().forEach(element => {
- element.toFront();
- });
- });
-
this.paper.on('cell:pointerdown', cellView => {
if (cellView.model.component) {
cellView.model.t... | 2 |
diff --git a/test/jasmine/tests/mock_test.js b/test/jasmine/tests/mock_test.js @@ -646,8 +646,13 @@ var list = [
'hot_heatmap',
'icicle_coffee',
'icicle_coffee-maxdepth3',
+ 'icicle_coffee-maxdepth3-all-directions',
+ 'icicle_count_branches',
'icicle_first',
'icicle_flare',
+ 'icicle_leaf-opacity-level',
+ 'icicle_pack... | 0 |
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -72,7 +72,7 @@ commands:
git config user.name "ci-build"
- add_ssh_keys:
fingerprints:
- - "c5:a7:d0:64:8d:7c:44:f7:6c:84:a9:b2:67:3e:9d:00"
+ - "01:67:4a:6d:26:9c:70:c4:1a:60:91:88:d9:dd:f0:83"
- run:
name: Deploy docs to gh-pages branch
command: gh-pages -d ... | 3 |
diff --git a/bin/release b/bin/release @@ -29,7 +29,7 @@ if [ "$(git status --porcelain | grep -v '??')" != "" ]; then
fi
npm run prepublishOnly
-npm version "$@" -m "v%s"
+npm version "$@" -m "v%s" --allow-same-version
trap cleanup INT
read -p "Press [Enter] to publish this release..."
git push && git push --tags
| 11 |
diff --git a/src/core/render/index.js b/src/core/render/index.js @@ -185,6 +185,7 @@ function renderMain(html) {
mountElm.setAttribute(isVueAttr, '');
if (vueVersion === 2) {
+ vueConfig.el = undefined;
new window.Vue(vueConfig).$mount(mountElm);
} else if (vueVersion === 3) {
const app = window.Vue.createApp(vueConfig... | 8 |
diff --git a/guides/airflow-dbt.md b/guides/airflow-dbt.md @@ -435,7 +435,7 @@ with dag:
Using the jaffleshop demo dbt project, the parser creates the following DAG including two task groups for the `dbt_run` and `dbt_test` tasks:
-
}
+
+ if (this.streamEnded) {
+ this.completeBatch(null, this.thisGetCallback)
+ }
}
setupGet (offset) {
@@ -59,7 +63,8 @@ class base {
})
this.stream.on('end', () => {
- this.completeBatch(null, this.th... | 9 |
diff --git a/docs/user-guide/README.md b/docs/user-guide/README.md @@ -62,7 +62,7 @@ eslint "src/**/*.{js,vue}"
```
::: tip
-If you installed [@vue/cli-plugin-eslint](https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint) you should have `lint` script added in your `package.json`. That means you c... | 7 |
diff --git a/lib/request-base.js b/lib/request-base.js @@ -129,6 +129,21 @@ RequestBase.prototype.timeout = function timeout(options){
return this;
};
+/**
+ * Set number of retry attempts on error.
+ *
+ * Failed requests will be retried 'count' times if timeout or err.code >= 500.
+ *
+ * @param {Number} count
+ * @r... | 0 |
diff --git a/CHANGELOG.md b/CHANGELOG.md ### New Stuff
-#### Server
-
-- Added Koa web framework for Node servers
-- Added Gin web framework for Go servers
-- Added Nodemon as a module to restart the Node server when the files change
-
-
#### Client
- Added Less and Sass support for the client side
- Added compilation/... | 3 |
diff --git a/src/main/resources/public/js/src/localizations/en-EU.js b/src/main/resources/public/js/src/localizations/en-EU.js @@ -997,9 +997,9 @@ define(['util'], function () {
type: 'Method type',
history_depth: 'History depth',
user: 'Owner',
- issue$auto_analyzed: 'AA',
+ issue$auto_analyzed: 'Analysed by RP (AA)',... | 10 |
diff --git a/lib/assets/javascripts/carto-node/lib/clients/public.js b/lib/assets/javascripts/carto-node/lib/clients/public.js @@ -104,11 +104,13 @@ class PublicClient {
? this.makeAbsoluteURI(this.makeRelativeURI(uriParts))
: '';
- const requestOptions = {
- ...opts,
+ const requestOptions = Object.assign({}, opts,
+ ... | 2 |
diff --git a/content/intro-to-storybook/react/en/using-addons.md b/content/intro-to-storybook/react/en/using-addons.md @@ -18,7 +18,7 @@ We could write forever about configuring and using addons for all of your partic
## Setting Up Knobs
-Knobs is an amazing resource for designers and developers to experiment and play ... | 1 |
diff --git a/StackOverflowDarkMode.user.js b/StackOverflowDarkMode.user.js // @description Dark theme for sites and chat on the Stack Exchange Network
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author @samliew
-// @version 1.5
+// @version 1.5.1
//
// @include https://*stackexchange.com/*
// @includ... | 2 |
diff --git a/articles/nodejs-mongodb-custom-ranking/index.md b/articles/nodejs-mongodb-custom-ranking/index.md layout: engineering-education
status: publish
published: true
-url: /engineering-education/mongodb-nodejs-custom-ranking/
+url: /engineering-education/nodejs-mongodb-custom-ranking/
title: How to perform custo... | 10 |
diff --git a/src/react/projects/spark-core-react/src/SprkTable/SprkTable.js b/src/react/projects/spark-core-react/src/SprkTable/SprkTable.js @@ -37,7 +37,7 @@ const SprkTable = props => {
<div className={wrapperClassNames} data-id={idString}>
<table className={tableClassNames} {...other}>
<thead className="sprk-b-Table... | 3 |
diff --git a/.github/label-actions.yml b/.github/label-actions.yml unlabel:
- 'STATE: Outdated issue'
- 'STATE: Need response'
+
+? 'STATE: No workarounds'
+:
+ # Post a comment
+ comment: |
+ There are no workarounds. Once we get any updates, we will post them in this thread.
+ unlabel:
+ - 'STATE: No workarounds'
+ -... | 0 |
diff --git a/shared/js/background/atb.es6.js b/shared/js/background/atb.es6.js @@ -126,7 +126,7 @@ var ATB = (() => {
})
chrome.tabs.insertCSS(tab.id, {
- file: 'css/noatb.css'
+ file: 'public/css/noatb.css'
})
}
})
| 3 |
diff --git a/procgen/map-gen.js b/procgen/map-gen.js @@ -46,12 +46,12 @@ export class MapBlock extends THREE.Vector3 {
constructor(x, y) {
super(x, y, 0);
- this.walls = {
+ /* this.walls = {
left: false,
right: false,
up: false,
down: false,
- };
+ }; */
this.exitTarget = false;
this.centerTarget = false;
this.path = ... | 2 |
diff --git a/src/editor/components/BookCitationPreview.js b/src/editor/components/BookCitationPreview.js import { Component } from 'substance'
-import ElementCitationAuthorsList from './ElementCitationAuthorsList'
+import PersonGroupPreview from './PersonGroupPreview'
+import SourcePreviewComponent from './SourcePrevie... | 7 |
diff --git a/lib/modules/console/suggestions.js b/lib/modules/console/suggestions.js @@ -2,6 +2,7 @@ let utils = require('../../utils/utils');
class Suggestions {
constructor(embark, options) {
+ this.embark = embark;
this.events = embark.events;
this.plugins = options.plugins;
this.registerApi();
@@ -10,8 +11,7 @@ cla... | 4 |
diff --git a/generators/generator-base.js b/generators/generator-base.js @@ -447,33 +447,6 @@ module.exports = class extends PrivateBase {
this.needleApi.clientAngular.addModule(appName, angularName, folderName, fileName, enableTranslation, clientFramework);
}
- /**
- * Add a new http interceptor to the angular applica... | 2 |
diff --git a/test/image/mocks/zzz_smith_basic.json b/test/image/mocks/zzz_smith_basic.json "data": [
{
"type": "scattersmith",
- "real": [0, 0, 1, 1, 2, 5, 10, "Infinity"],
- "imag": [0, 1, 0, -2, -2, -5, -10, "Infinity"],
+ "real": [0, 0, 1, 1, 2, 5, 10],
+ "imag": [0, 1, 0, -2, -2, -5, -10],
"mode": "lines+markers",
... | 2 |
diff --git a/server/game/cards/02.5-FHNS/SeppunIshikawa.js b/server/game/cards/02.5-FHNS/SeppunIshikawa.js @@ -5,7 +5,6 @@ class SeppunIshikawa extends DrawCard {
setupCardAbilities(ability) {
this.persistentEffect({
match: this,
- recalculateWhen: ['onMove', 'onPlayIntoConflict', 'onCardTraitChanged', 'onCardEntersPla... | 2 |
diff --git a/packages/react-scripts/config/webpack.config.js b/packages/react-scripts/config/webpack.config.js @@ -305,7 +305,7 @@ module.exports = function (webpackEnv) {
// https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366
splitChunks: {
chunks: 'all',
- nam... | 7 |
diff --git a/src/VR.js b/src/VR.js @@ -656,7 +656,7 @@ const controllerIDs = {
fake: 'OpenVR Gamepad',
openvr: 'OpenVR Gamepad',
// oculusMobile: 'Oculus Go',
- openvrTracker: 'Tracker',
+ openvrTracker: 'OpenVR Tracker',
oculusLeft: 'Oculus Touch (Left)',
oculusRight: 'Oculus Touch (Right)',
oculusMobileLeft: 'Oculus ... | 10 |
diff --git a/fastlane/Fastfile b/fastlane/Fastfile @@ -34,6 +34,14 @@ platform :android do
task: 'bundle',
build_type: 'Release',
)
+
+ upload_to_play_store(
+ package_name: "com.expensify.chat",
+ json_key: './android/app/android-fastlane-json-key.json',
+ aab: './android/app/build/outputs/bundle/release/app-release.a... | 4 |
diff --git a/package.json b/package.json "name": "marklogic",
"description": "The official MarkLogic Node.js client API.",
"homepage": "http://github.com/marklogic/node-client-api",
- "version": "2.9.0",
+ "version": "2.9.1",
"license": "Apache-2.0",
"main": "./lib/marklogic.js",
"scripts": {
| 3 |
diff --git a/lib/taiko.js b/lib/taiko.js @@ -8,7 +8,7 @@ const fs = require('fs');
const EventEmiter = require('events').EventEmitter;
const path = require('path');
const ChromiumRevision = require(path.join(helper.projectRoot(), 'package.json')).taiko.chromium_revision;
-const default_timeout = 5000;
+const default_ti... | 13 |
diff --git a/src/angular/projects/spark-core-angular/src/lib/components/sprk-narrow-navigation-item/sprk-narrow-navigation-item.component.ts b/src/angular/projects/spark-core-angular/src/lib/components/sprk-narrow-navigation-item/sprk-narrow-navigation-item.component.ts -import { Component, Input } from '@angular/core'... | 3 |
diff --git a/react/src/components/masthead/components/SprkMastheadLittleNav/SprkMastheadLittleNav.js b/react/src/components/masthead/components/SprkMastheadLittleNav/SprkMastheadLittleNav.js @@ -88,16 +88,34 @@ class SprkMastheadLittleNav extends Component {
}
SprkMastheadLittleNav.propTypes = {
- /** classes to be add... | 7 |
diff --git a/src/pages/bitcoin-farm-calculator/index.js b/src/pages/bitcoin-farm-calculator/index.js @@ -3,7 +3,7 @@ import './index.css';
import { useItemByIdQuery } from '../../features/items/queries';
import useStateWithLocalStorage from '../../hooks/useStateWithLocalStorage';
-import { InputFilter, ToggleFilter } f... | 4 |
diff --git a/gulpfile.js b/gulpfile.js @@ -48,14 +48,10 @@ function styles(){
}
//build tabulator
-function tabulator(){
- //return gulp.src('src/js/**/*.js')
- return gulp.src('src/js/core_modules.js')
+function umd(){
+ return gulp.src('src/js/umd.js')
.pipe(insert.prepend(version + "\n"))
- //.pipe(sourcemaps.init()... | 3 |
diff --git a/.travis.yml b/.travis.yml @@ -67,6 +67,8 @@ jobs:
services:
- xvfb
- name: react-recurly
+ allow_failures:
+ if: env(TRAVIS_PULL_REQUEST) != false
env: RECURLY_JS_SHA=$TRAVIS_COMMIT
script:
- mkdir -p vendor && cd vendor
| 11 |
diff --git a/sirepo/template/warpvnd.py b/sirepo/template/warpvnd.py @@ -983,7 +983,7 @@ def _prepare_conductors(data):
if ct is None:
continue
type_by_id[ct.id] = ct
- pkdp('!PREP CONDS {}', ct)
+ #pkdp('!PREP CONDS {}', ct)
for f in ('xLength', 'yLength', 'zLength'):
ct[f] = _meters(ct[f])
if not _is_3D(data):
@@ -11... | 14 |
diff --git a/ui/src/utils/extend.js b/ui/src/utils/extend.js @@ -2,7 +2,7 @@ const
toString = Object.prototype.toString,
hasOwn = Object.prototype.hasOwnProperty,
notPlainObject = new Set(
- [ 'Boolean', 'Number', 'String', 'Function', 'Array', 'Date', 'RegExp', 'Object' ]
+ [ 'Boolean', 'Number', 'String', 'Function',... | 1 |
diff --git a/src/components/text-input/index.js b/src/components/text-input/index.js @@ -126,7 +126,15 @@ class TextInput extends Component {
if (typeof attributes === 'object' && attributes !== null) {
attr = Object.keys (attributes).map ((key) => {
- return `${key}="${attributes[key]}"`;
+ let value = attributes[key]... | 11 |
diff --git a/README.md b/README.md @@ -144,11 +144,6 @@ Open-source clients to the plotly.js APIs are available at these links:
|**Python / Pandas / IPython notebook**| [plotly/plotly.py](https://github.com/plotly/plotly.py) | [plotly/python/getting-started](https://plotly.com/python/getting-started) |
|**MATLAB**| [pl... | 2 |
diff --git a/manifest.json b/manifest.json "persistent": true
},
- "applications": {
+ "browser_specific_settings": {
"gecko": {
- "id": "maxurl@qsniyg"
+ "id": "maxurl@qsniyg",
+ "strict_min_version": "48.0"
}
},
| 12 |
diff --git a/generators/generator-base.js b/generators/generator-base.js @@ -155,7 +155,7 @@ module.exports = class extends Generator {
splicable: [
this.stripMargin(
`|<li uiSrefActive="active">
- | <a class="dropdown-item" routerLink="${routerName}" (click)="collapseNavbar()">
+ | <a class="dropdown-item" routerLink=... | 1 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,68 @@ 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.50.0] -- 2019-10-07
+
+### Added
+- Add `treemap` trace type [#4185, #4219, #4227, #4242]
+- Add `texttemplate` attribute to all trac... | 3 |
diff --git a/src/plugins/Dashboard/FileCard.js b/src/plugins/Dashboard/FileCard.js @@ -8,7 +8,10 @@ module.exports = function fileCard (props) {
const tempStoreMetaOrSubmit = (ev) => {
if (ev.keyCode === 13) {
+ ev.stopPropagation()
+ ev.preventDefault()
props.done(meta, file.id)
+ return
}
const value = ev.target.valu... | 9 |
diff --git a/src/tests/structs/db/int_PendingArticle.database.test.js b/src/tests/structs/db/int_PendingArticle.database.test.js @@ -47,4 +47,7 @@ describe('Int::structs/db/PendingArticle Database', function () {
const docs = await collection.find({}).toArray()
expect(docs[0].article).toEqual(expect.objectContaining(da... | 1 |
diff --git a/edit.js b/edit.js @@ -995,6 +995,33 @@ const _initializeLogin = async () => {
};
_initializeLogin();
+const wheelCanvas = (() => {
+ const size = 512;
+ const canvas = document.createElement('canvas');
+ canvas.style.cssText = `
+ position: absolute;
+ top: 100px;
+ left: 100px;
+ width: auto !important;
+... | 0 |
diff --git a/bin/sails-debug.js b/bin/sails-debug.js @@ -18,7 +18,10 @@ var Sails = require('../lib/app');
* @stability 2
* @see http://sailsjs.com/documentation/reference/command-line-interface/sails-debug
*/
-module.exports = function() {
+module.exports = function(cmd) {
+
+ var extraArgs = cmd.parent.rawArgs.slice(... | 11 |
diff --git a/components/App.js b/components/App.js @@ -6,6 +6,7 @@ import {loginManager} from '../login.js';
import {planet} from '../planet.js';
import {state, getState, setState, getSpecificState} from '../state.js';
import {setBindings} from './bindings.js';
+import {getContractSource} from '../blockchain.js';
let a... | 0 |
diff --git a/src/components/DayPickerNavigation.jsx b/src/components/DayPickerNavigation.jsx @@ -191,7 +191,10 @@ export default withStyles(({ reactDates: { color, zIndex } }) => ({
zIndex: zIndex + 2,
},
- DayPickerNavigation__horizontal: {},
+ DayPickerNavigation__horizontal: {
+ height: 0,
+ },
+
DayPickerNavigation... | 12 |
diff --git a/src/providers/UniversalAnalytics.js b/src/providers/UniversalAnalytics.js @@ -455,6 +455,8 @@ class UniversalAnalyticsProvider extends BaseProvider
type = "Page View";
} else if(value === "transaction" || value === "item") {
type = "Ecommerce " + value.charAt(0).toUpperCase() + value.slice(1);
+ } else if(... | 12 |
diff --git a/lib/voice/VoiceConnectionManager.js b/lib/voice/VoiceConnectionManager.js @@ -18,13 +18,21 @@ class VoiceConnectionManager extends Collection {
return new Promise((res, rej) => {
var disconnectHandler = () => {
connection.removeListener("ready", readyHandler);
+ connection.removeListener("error", errorHand... | 9 |
diff --git a/public/index.html b/public/index.html ga('govuk_shared.require', 'linker');
ga('govuk_shared.set', 'anonymizeIp', true);
ga('govuk_shared.set', 'allowAdFeatures', false);
- ga('govuk_shared.linker:autoLink', ['www.gov.uk', 'coronavirus.data.gov.uk']);
+ ga('govuk_shared.linker:autoLink', ['www.gov.uk', 'co... | 9 |
diff --git a/app/components/job/Index/jobs.js b/app/components/job/Index/jobs.js @@ -67,12 +67,14 @@ class Jobs extends React.PureComponent {
// Ensure the states are all upper case since it's a GraphQL enum
const states = searchQueryParams['state'];
+ if(states) {
if (typeof states === 'string') {
variables.states = s... | 9 |
diff --git a/css/style.css b/css/style.css @@ -691,6 +691,25 @@ input[type='number'] {
font-size: 1.4em;
}
+.fa-instagram:hover {
+ /* color: #bc2a8d; */
+ background: #d6249f;
+ background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
+ border-radius: 10%;
+}
+
+.fa... | 3 |
diff --git a/src/components/accounts/SetRecoveryInfo.js b/src/components/accounts/SetRecoveryInfo.js @@ -51,8 +51,10 @@ class SetRecoveryInfo extends Component {
this.props.requestCode(this.state.phoneNumber, this.props.accountId)
.finally(() => {
this.setState(() => ({
- loader: false
+ loader: false,
+ isLegit: false... | 12 |
diff --git a/test/test_taskfiles.js b/test/test_taskfiles.js @@ -41,7 +41,7 @@ const tsvPath2_2 = path.normalize(path.resolve('./testdata/tasks2/task-sample_ru
if seconds 10, durations=1.0
if frames 10-0.5TR, 11+0.5*TR
-
+*/
let errFn = (e, done) => {
console.log(colors.red('---- An error occured while reading', e));
| 1 |
diff --git a/src/components/dropdown.js b/src/components/dropdown.js @@ -17,6 +17,7 @@ class Dropdown extends React.Component {
this.onExpandButtonClick = this.onExpandButtonClick.bind(this)
this.handleClickOutside = this.handleClickOutside.bind(this)
+ this.handleBlur = this.handleBlur.bind(this)
this.handleEscapeKey ... | 7 |
diff --git a/scenes/street.scn b/scenes/street.scn "start_url": "https://avaer.github.io/rainbow-dash/",
"dynamic": true
},
+ {
+ "position": [
+ 0,
+ 0,
+ -6
+ ],
+ "quaternion": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "start_url": "https://webaverse.github.io/silk-grass/"
+ },
{
"position": [
-13,
| 0 |
diff --git a/server/src/rest.js b/server/src/rest.js @@ -47,7 +47,7 @@ function sendObjectAsJsonFile(res, data, filename) {
const readStream = new stream.PassThrough();
readStream.end(fileContents);
res.set('Content-disposition', 'attachment; filename=' + filename);
- res.set('Content-Type', 'text/plain');
+ res.set('C... | 12 |
diff --git a/config/sidebar.yml b/config/sidebar.yml @@ -40,22 +40,6 @@ articles:
- title: "For Client-side Web Apps"
url: "/client-auth/client-side-web"
- - title: "Auth0 Hooks"
- url: "/auth0-hooks"
- children:
-
- - title: "Overview"
- url: "/auth0-hooks/overview"
-
- - title: "Extensibility Points"
- url: "/auth0-h... | 2 |
diff --git a/plugins/downloader/front.js b/plugins/downloader/front.js @@ -31,11 +31,16 @@ const reinit = () => {
}
};
+const baseUrl = "https://music.youtube.com";
// TODO: re-enable once contextIsolation is set to true
// contextBridge.exposeInMainWorld("downloader", {
// download: () => {
global.download = () => {
-... | 11 |
diff --git a/detox/src/devices/android/ADB.test.js b/detox/src/devices/android/ADB.test.js @@ -39,14 +39,14 @@ describe('ADB', () => {
adb = new ADB();
});
- describe.only('devices', () => {
+ describe('devices', () => {
it(`should invoke ADB`, async () => {
await adb.devices();
expect(exec).toHaveBeenCalledWith(`${adb... | 2 |
diff --git a/packages/app/src/components/PageEditor/CodeMirrorEditor.jsx b/packages/app/src/components/PageEditor/CodeMirrorEditor.jsx @@ -3,8 +3,6 @@ import PropTypes from 'prop-types';
import urljoin from 'url-join';
import * as codemirror from 'codemirror';
-import { UnControlled as UncontrolledCodeMirror } from 're... | 13 |
diff --git a/docs/documentation/Configuration/index.md b/docs/documentation/Configuration/index.md @@ -45,7 +45,7 @@ Your Google Analytics Domain. Will default to `process.env.GA_DOMAIN`.
### Google Maps
-Keystone's [Location field type](/api/field/location/) supports integration with the [Google Maps API](www.morethan... | 3 |
diff --git a/source/themes/simple/SimpleSwitch.scss b/source/themes/simple/SimpleSwitch.scss // OVERRIDABLE CONFIGURATION VARIABLES
-$switch-on-accent-color: #2f496e !default;
-$switch-off-accent-color: #b4bdca !default;
+$switch-accent-color-on: #2f496e !default;
+$switch-accent-color-off: #b4bdca !default;
$switch-th... | 10 |
diff --git a/examples/extended-item.json b/examples/extended-item.json {
"stac_version": "1.0.0-rc.1",
"stac_extensions": [
- "eo",
- "projection",
- "scientific",
- "view",
+ "https://stac-extensions.github.io/eo/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/projection/v1.0.0/schema.json",
+ "https://stac-... | 3 |
diff --git a/assets/src/libraries/BookList.js b/assets/src/libraries/BookList.js @@ -11,6 +11,7 @@ export default class BookList extends Component {
currentBook: {}
};
this.showDetail = this.showDetail.bind(this);
+ this.fetchBook = this.fetchBook.bind(this);
}
componentWillMount() {
@@ -26,7 +27,22 @@ export default c... | 0 |
diff --git a/token-metadata/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7/metadata.json b/token-metadata/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7/metadata.json "symbol": "MBN",
"address": "0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/test/jasmine/tests/sliders_test.js b/test/jasmine/tests/sliders_test.js @@ -334,13 +334,13 @@ describe('sliders interactions', function() {
d3.select(gd).selectAll('.slider-group').each(function(d, i) {
var sliderBB = this.getBoundingClientRect();
var gdBB = gd.getBoundingClientRect();
+
if(i === 0) {
expe... | 0 |
diff --git a/src/platform/web/ui/css/themes/element/theme.css b/src/platform/web/ui/css/themes/element/theme.css @@ -448,8 +448,7 @@ a {
}
.RoomHeader .room-options {
- font-weight: bold;
- font-size: 1.5rem;
+ background-image: url("./icons/vertical-ellipsis.svg");
}
.RoomView_error {
| 12 |
diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js @@ -154,22 +154,22 @@ function getChatReportName(fullReport, chatType) {
* @returns {Object}
*/
function getSimplifiedReportObject(report) {
- const lastReportAction = !_.isEmpty(report.mostRecentReportAction) ? report.mostRecentReportAction : null;
-... | 4 |
diff --git a/server/preprocessing/other-scripts/test/create_snapshots.R b/server/preprocessing/other-scripts/test/create_snapshots.R @@ -33,10 +33,13 @@ ADDITIONAL_STOP_WORDS = "english"
test_cases <- read.csv("queries.csv")
-commit_id <- "334154e" # latest master commit considered stable; switch to release tag later
+... | 3 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js b/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js @@ -569,7 +569,13 @@ RED.editor = (function() {
var inputsDiv = $("#node-label-form-inputs");
var outputsDiv = $("#node-label-form-outputs");
- var inputCount = node.inputs ... | 9 |
diff --git a/src/components/auth/torus/AuthTorus.web.js b/src/components/auth/torus/AuthTorus.web.js // @flow
-
/*eslint-disable*/
import React, { useCallback, useMemo, useState } from 'react'
import { Image, TouchableOpacity, View } from 'react-native'
@@ -31,7 +30,7 @@ import SimpleStore from '../../../lib/undux/Simp... | 13 |
diff --git a/client/GameComponents/StrongholdRow.jsx b/client/GameComponents/StrongholdRow.jsx @@ -14,7 +14,7 @@ class StrongholdRow extends React.Component {
player &&
<img
className={ `card-image imperial-favor ${ this.props.cardSize } ${player.imperialFavor ? '' : 'hidden'} ` }
- src={ '/img/' + (player.imperialFavo... | 4 |
diff --git a/edit.js b/edit.js @@ -1613,6 +1613,109 @@ const _tickPlanetAnimation = factor => {
}
}; */
+const cometFireMesh = (() => {
+ const radius = 1;
+ const opacity = 0.5;
+ const _makeSphereGeometry = (radius, color, position, scale) => {
+ const geometry = new THREE.SphereBufferGeometry(radius, 8, 5);
+ // .ap... | 0 |
diff --git a/articles/migrations/index.md b/articles/migrations/index.md @@ -23,6 +23,51 @@ If you need help with the migration, create a ticket in our [Support Center](htt
## Current Migrations
Current migrations are listed below, newest first. For migrations that have already been enabled see [Past Migrations](#past-... | 0 |
diff --git a/lib/assets/javascripts/carto-node/lib/clients/authenticated.js b/lib/assets/javascripts/carto-node/lib/clients/authenticated.js @@ -61,7 +61,6 @@ class AuthenticatedClient extends PublicClient {
deleteLikeMap (mapId, callback) {
const CONFIG_PATH = 'api/v1/viz';
var opts = {
- data: JSON.stringify(mapId),
... | 2 |
diff --git a/articles/api-auth/tutorials/adoption/scope-custom-claims.md b/articles/api-auth/tutorials/adoption/scope-custom-claims.md @@ -69,6 +69,8 @@ This follows a [recommendation from the OIDC specification](https://openid.net/s
If you need to add custom claims to the access token, the same applies but using `cont... | 0 |
diff --git a/src/intl/index.js b/src/intl/index.js @@ -64,7 +64,7 @@ const messageFormatCache: {[MessageIdType]: typeof IntlMessageFormat} = {}
function formatMessage (id: MessageIdType, values: ?Object, targetLocale: string): string {
let messageFormat = messageFormatCache[id]
if (!messageFormat) {
- messageFormat = n... | 8 |
diff --git a/accessibility-checker-engine/src/v2/aria/ARIADefinitions.ts b/accessibility-checker-engine/src/v2/aria/ARIADefinitions.ts @@ -227,7 +227,7 @@ export class ARIADefinitions {
* - reqProps: required states or properties for this role
* - reqChildren: required children for this role
* - htmlEquiv: HTML equival... | 3 |
diff --git a/stories/index.tsx b/stories/index.tsx @@ -104,6 +104,25 @@ storiesOf('Griddle main', module)
</Griddle>
)
})
+ .add('with Cell events', () => {
+ return (
+ <Griddle
+ data={fakeData}
+ plugins={[LocalPlugin]}
+ components={{
+ CellEnhancer: OriginalComponent =>
+ props => (
+ <OriginalComponent
+ {...prop... | 0 |
diff --git a/app/models/project_observation.rb b/app/models/project_observation.rb @@ -404,12 +404,12 @@ class ProjectObservation < ActiveRecord::Base
false
end
- def in_project?
+ def in_project?(project = nil)
return true if project.is_new_project?
false
end
- def observed_by_user?
+ def observed_by_user?(user = nil)... | 1 |
diff --git a/packages/@uppy/robodog/package.json b/packages/@uppy/robodog/package.json "@uppy/form": "file:../form",
"@uppy/google-drive": "file:../google-drive",
"@uppy/instagram": "file:../instagram",
+ "@uppy/facebook": "file:../facebook",
+ "@uppy/onedrive": "file:../onedrive",
"@uppy/status-bar": "file:../status-b... | 0 |
diff --git a/src/lib/actions/ActionsSession.js b/src/lib/actions/ActionsSession.js @@ -79,7 +79,9 @@ function verifyAuthToken() {
return signIn(credentials.login, credentials.password);
}
- return request('Get', {returnValueList: 'account', doNotRetry: true}).then((data) => {
+ // We make this request to see if we have... | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.