code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/core/algorithm-builder/dockerfile/get-deps-java.sh b/core/algorithm-builder/dockerfile/get-deps-java.sh #!/bin/bash
set -eo pipefail
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
-mkdir -p $SCRIPTPATH/../environments/java/m2
export javaWrapperVersion='2.0-SNAPSHOT'
mkdir -p $SCRIPTPATH/../environments/ja... | 2 |
diff --git a/README.md b/README.md @@ -127,7 +127,7 @@ The tool will prompt you for your deploy settings, then provide you with two ite
It's also possible to deploy a site manually, without continuous deployment. This method uploads files directly from your local project directory to your site on Netlify, without runni... | 3 |
diff --git a/src/components/Timestamp/Timestamp.js b/src/components/Timestamp/Timestamp.js @@ -10,9 +10,9 @@ import type { TimestampProps } from "./Timestamp.types";
const Timestamp: ComponentType<TimestampProps> = ({ timestamp, format="D MMMM YYYY", ...props }) => {
- return <time dateTime={ timestamp } { ...props }>
... | 14 |
diff --git a/src/payment-flows/native/eligibility.js b/src/payment-flows/native/eligibility.js @@ -129,32 +129,32 @@ export function isNativeEligible({ props, config, serviceData } : IsEligibleOpti
const { firebase: firebaseConfig } = config;
const { merchantID } = serviceData;
- if (!canUsePopupAppSwitch({ fundingSour... | 11 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.39.0",
+ "version": "0.40.0",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/data.js b/data.js @@ -599,6 +599,14 @@ module.exports = [{
url: "https://github.com/evandrolg/Feed",
source: "https://raw.githubusercontent.com/EvandroLG/Feed/master/src/feed.js"
},
+ {
+ name: "Holen",
+ github: "RickStanley/Holen",
+ tags: ["xhr", "ajax", "nojquery", "xmlhttprequest", "x-requested-with",... | 0 |
diff --git a/src/css/core.variables.styl b/src/css/core.variables.styl $space-base ?= 16px
$space-x-base ?= $space-base
$space-y-base ?= $space-base
-$spaces = {
+$spaces ?= {
none: {
x: 0,
y: 0
@@ -45,7 +45,7 @@ $flex-gutter-xl ?= 64px
$body-background ?= white
$body-color ?= #0c0c0c
-$flex-gutter = {
+$flex-gutter ?=... | 3 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.51.0",
+ "version": "0.52.0",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/server/typeDefs/flight.ts b/server/typeDefs/flight.ts @@ -35,6 +35,7 @@ export const aspectList = [
export function addAspects(template, sim: Classes.Simulator, data = App) {
// Duplicate all of the other stuff attached to the simulator too.
+
aspectList.forEach(aspect => {
if (
aspect === "softwarePanels"... | 1 |
diff --git a/activities/Measure.activity/css/activity.css b/activities/Measure.activity/css/activity.css @@ -472,37 +472,44 @@ p {
background-image: url("../icons/help.svg");
}
-@media only screen and (max-width: 967px) {
- #logging-interval-button {
+@media only screen and (max-width: 1019px) {
+ #capture-image-button... | 7 |
diff --git a/src/page/HomePage/Report/ReportHistoryView.js b/src/page/HomePage/Report/ReportHistoryView.js @@ -18,18 +18,11 @@ class ReportHistoryView extends React.Component {
constructor(props) {
super(props);
+ // Keeps track of the history length so that when length changes, the list is scrolled to the bottom
this.... | 7 |
diff --git a/src/js/common_shim.js b/src/js/common_shim.js @@ -259,7 +259,9 @@ module.exports = {
// Determine final maximum message size
var maxMessageSize;
- if (canSendMMS === 0 || remoteMMS === 0) {
+ if (canSendMMS === 0 && remoteMMS === 0) {
+ maxMessageSize = Number.POSITIVE_INFINITY;
+ } else if (canSendMMS ===... | 12 |
diff --git a/fxmanifest.lua b/fxmanifest.lua @@ -7,8 +7,9 @@ description 'Remotely Manage & Monitor your GTA5 FiveM Server'
repository 'https://github.com/tabarra/txAdmin'
version '3.2.0-dev'
+rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible onc... | 0 |
diff --git a/source/timezones/TimeZone.js b/source/timezones/TimeZone.js @@ -232,21 +232,11 @@ class TimeZone {
}
const addTimeZone = function (timeZone) {
- let area = TimeZone.areas;
- const parts = timeZone.name.split('/');
- const l = parts.length - 1;
- let i;
- for (i = 0; i < l; i += 1) {
- area = area[parts[i]]... | 2 |
diff --git a/src/traces/pie/attributes.js b/src/traces/pie/attributes.js @@ -187,7 +187,6 @@ module.exports = {
values: ['horizontal', 'radial', 'tangential', 'auto'],
dflt: 'auto',
editType: 'plot',
-
description: [
'The `insidetextorientation` attribute controls the',
'orientation of the text inside chart sectors.',
| 2 |
diff --git a/content/questions/confusing-date/index.md b/content/questions/confusing-date/index.md @@ -10,7 +10,7 @@ answers:
- '1/1/2019 1/1/2019'
---
-Consider the following code block which calls the Date constructor with 2 type of values. What will be the output of `console.log`?
+Consider the following code block ... | 0 |
diff --git a/samples/javascript_nodejs/09.message-routing/bot.js b/samples/javascript_nodejs/09.message-routing/bot.js @@ -115,7 +115,7 @@ class MessageRoutingBot {
* Determine whether a turn is interrupted and handle interruption based off user's utterance.
*
* @param {DialogContext} dc - dialog context
- * @param {st... | 0 |
diff --git a/js/dataobjects/bisweb_taskutils.js b/js/dataobjects/bisweb_taskutils.js @@ -54,11 +54,11 @@ let parseFile = (filename) => {
}
//return results with relevant metadata
- let tr = parseInt(obj.data.tr), units = parseInt(obj.data.units), offset = parseInt(obj.data.offset), frames = parseInt(obj.data.frames);
+... | 2 |
diff --git a/src/traces/mesh3d/attributes.js b/src/traces/mesh3d/attributes.js @@ -163,7 +163,10 @@ module.exports = extendFlat({
editType: 'calc',
description: [
'Sets the color of each vertex',
- 'Overrides *color*.'
+ 'Overrides *color*. While Red, green and blue colors',
+ 'are in the range of 0 and 255; in the cas... | 3 |
diff --git a/lib/ui/components/new/QuickEdit.js b/lib/ui/components/new/QuickEdit.js @@ -37,7 +37,7 @@ const arrowSectionStyle = Object.assign({}, sectionStyle, {
});
const disabledArrowSectionStyle = Object.assign({}, sectionStyle, {
- opacity: '0.3'
+ cursor: 'default'
});
const responseBodyInputStyle = {
@@ -62,6 +6... | 7 |
diff --git a/pages/docs/manual/latest/variant.mdx b/pages/docs/manual/latest/variant.mdx @@ -310,7 +310,7 @@ ReScript also provides [a few other ways](bind-to-js-function.md#modeling-polymo
### Variant Types Are Found By Field Name
-Please refer to this [record section](record#record-types-are-found-by-field-name). Var... | 1 |
diff --git a/html/base/inputs/_checkbox.scss b/html/base/inputs/_checkbox.scss border-color: $sprk-checkbox-huge-container-hover-border-color;
box-shadow: $sprk-checkbox-huge-container-hover-box-shadow;
+ /* stylelint-disable max-nesting-depth */
&::before {
- /* stylelint-disable-line max-nesting-depth */
border-color... | 3 |
diff --git a/core/server/web/shared/middlewares/api/spam-prevention.js b/core/server/web/shared/middlewares/api/spam-prevention.js @@ -3,10 +3,26 @@ const extend = require('lodash/extend');
const pick = require('lodash/pick');
const errors = require('@tryghost/errors');
const config = require('../../../../../shared/con... | 14 |
diff --git a/src/core/viewport.js b/src/core/viewport.js @@ -306,7 +306,7 @@ let corefn = ({
_p.maxZoom = max;
} else if( is.number( min ) && max === undefined && min <= _p.maxZoom ){
_p.minZoom = min;
- } else if( is.number( max ) && min === undefined && max <= _p.minZoom ){
+ } else if( is.number( max ) && min === un... | 1 |
diff --git a/lib/rules/index.js b/lib/rules/index.js @@ -156,9 +156,9 @@ function tpl(str, data){
.split('%>').join('p.push(\'')
.split('\r').join('\\\'');
try {
- fn = new Function('it',
+ fn = new Function('obj',
'var p=[],print=function(){p.push.apply(p,arguments);};' +
- 'p.push(\'' + str + '\');return p.join(\'\')... | 1 |
diff --git a/src/geo/polygon.js b/src/geo/polygon.js const PRO = Polygon.prototype;
- /** ******************************************************************
- * Polygon Filter/Chain Functions
- ******************************************************************* */
-
- Polygon.filterTooSmall = function(p) {
- return p.l... | 2 |
diff --git a/Source/Scene/Camera.js b/Source/Scene/Camera.js @@ -366,6 +366,8 @@ Camera.prototype._updateCameraChanged = function () {
camera._changedHeading = camera.heading;
}
+ var headingChanged = camera._changedHeading === camera.heading ? false : true;
+
if (camera._mode === SceneMode.SCENE2D) {
if (!defined(came... | 3 |
diff --git a/test/image/mocks/z-new_tickmode_sync.json b/test/image/mocks/z-new_tickmode_sync.json "name": "Oranges",
"type": "scatter",
"x": [
- "Jan",
- "Feb",
- "Mar",
- "Apr",
- "May"
+ "A",
+ "B",
+ "C"
],
"y": [
- -0.8,
- 0.09,
- 0.01,
- 0.13,
- 0.42
+ 0,
+ 0.5,
+ 1
],
- "yaxis": "y2"
+ "yaxis": "y2",
+ "xaxis": ... | 0 |
diff --git a/articles/protocols/saml/saml-idp-generic.md b/articles/protocols/saml/saml-idp-generic.md @@ -28,7 +28,7 @@ In this section you will configure Auth0 to serve as an Identity Provider. You
2. Click on the red **"+ CREATE CLIENT"** button on the right.
-3. In the **Name** field, enter a name like "MySAMLApp".... | 0 |
diff --git a/config/engine_config.js b/config/engine_config.js @@ -28,21 +28,15 @@ EngineConfig.prototype.update = function(data, callback) {
var profileDir = __dirname + '/../profiles/' + newProfile;
var stat = fs.statSync(profileDir);
if(!stat.isDirectory()) {
- console.log("not a directory")
throw new Error('Not a d... | 1 |
diff --git a/src/User.jsx b/src/User.jsx @@ -67,6 +67,7 @@ const User = ({address, setAddress, open, setOpen, toggleOpen, setLoginFrom}) =>
} else if (error) {
setLoginError(String(error).toLocaleUpperCase());
}
+ window.history.pushState({}, '', window.location.origin);
setLoggingIn(false);
} else {
await WebaWallet.w... | 2 |
diff --git a/src/components/ActionCard.js b/src/components/ActionCard.js import React from "react"
import styled from "styled-components"
import Img from "gatsby-image"
+import Translation from "../components/Translation"
import Link from "./Link"
@@ -70,8 +71,12 @@ const ActionCard = ({
)}
</ImageWrapper>
<Content cla... | 12 |
diff --git a/lib/waterline/utils/query/process-all-records.js b/lib/waterline/utils/query/process-all-records.js @@ -387,6 +387,10 @@ module.exports = function processAllRecords(records, meta, modelIdentity, orm) {
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}
+ // If the ... | 11 |
diff --git a/src/lib/utils/hotReloadComponent.js b/src/lib/utils/hotReloadComponent.js +import Config from '../../config/config'
import { isWeb } from './platform'
+const runningTests = Config.env === 'test'
+
/*
Hot reloads components for web-ONLY as react-native already has built-in hot refresher
*/
const hotReloadCo... | 0 |
diff --git a/OurUmbraco.Site/config/Dashboard.config b/OurUmbraco.Site/config/Dashboard.config </tab>
</section>
- <section alias="ReleasesDashboard">
- <areas>
- <area>developer</area>
- </areas>
- <tab caption="YouTrack Releases">
- <control showOnce="false" addPanel="true" panelCaption="">
- ~/usercontrols/dashboard... | 2 |
diff --git a/articles/rules/current/management-api.md b/articles/rules/current/management-api.md @@ -14,9 +14,15 @@ useCase:
---
# Use the Management API in Rules
-You have limited access to the [Management API](/api/management/v2) inside Rules. In particular, the version of the Node.js client library available from ru... | 3 |
diff --git a/app/containers/App.js b/app/containers/App.js @@ -60,6 +60,8 @@ import {
VIEW,
SHEET_TYPE,
SHEET_FIT,
+ DEFAULT_THUMB_COUNT,
+ DEFAULT_COLUMN_COUNT,
DEFAULT_SHEET_SCENES,
DEFAULT_SHEET_INTERVAL,
} from '../utils/constants';
@@ -1126,14 +1128,14 @@ class App extends Component {
store.dispatch(addDefaultThum... | 12 |
diff --git a/src/apps.json b/src/apps.json ],
"html": "<link[^>]* href=\"[^\"]*material(?:\\.[\\w]+-[\\w]+)?(?:\\.min)?\\.css",
"icon": "Material Design Lite.png",
- "script": "material(?:\\.min)?\\.js",
+ "script": "(?:/([\\d.]+))?/material(?:\\.min)?\\.js\\;version:\\1",
+ "js": {
+ "MaterialIconToggle": ""
+ },
"web... | 7 |
diff --git a/index.ts b/index.ts @@ -8,12 +8,12 @@ import {ComponentDidAppearEvent, ComponentDidDisappearEvent, Navigation} from 'r
import {Events, Screens} from './app/constants';
import DatabaseManager from './app/database/manager';
import {getAllServerCredentials} from './app/init/credentials';
-import GlobalEventHa... | 14 |
diff --git a/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js b/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js @@ -50,7 +50,7 @@ var ENV = require( '@stdlib/process/env' );
var debug = logger( 'scripts:publish-packages' );
var START_PKG_INDEX = 0;
-var END_PKG_INDEX = 30;
+var END_PKG_INDEX = 50... | 9 |
diff --git a/src/tags/control/TextArea/TextArea.js b/src/tags/control/TextArea/TextArea.js @@ -392,7 +392,7 @@ const HtxTextAreaRegionView = observer(({ item, area, collapsed, setCollapsed })
const lastFocusRequest = useRef(0);
useEffect(() => {
if (isActive && shouldFocus && lastFocusRequest.current < area.perRegionFo... | 12 |
diff --git a/token-metadata/0x249f71F8D9dA86c60f485E021b509A206667A079/metadata.json b/token-metadata/0x249f71F8D9dA86c60f485E021b509A206667A079/metadata.json "symbol": "SNGJ",
"address": "0x249f71F8D9dA86c60f485E021b509A206667A079",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/src/main-blockchain/Blockchain.js b/src/main-blockchain/Blockchain.js @@ -151,7 +151,7 @@ class Blockchain{
console.warn("################### RESYNCHRONIZATION STARTED ##########");
let suspendMining = false;
- if (this.blockchain.agent.light && NodesList.nodes.length <= 0)
+ if (!this.blockchain.light || ... | 13 |
diff --git a/tools/make/lib/node/addons.mk b/tools/make/lib/node/addons.mk @@ -46,6 +46,7 @@ install-node-addons: $(NODE_MODULES) clean-node-addons
echo ''; \
echo "Building add-on: $$pkg"; \
cd $$pkg && \
+ NODE_PATH="$(NODE_PATH)" \
GYP_DEFINES="$(NODE_GYP_DEFINES)" \
$(NODE_GYP) $(NODE_GYP_FLAGS) rebuild \
|| { echo... | 12 |
diff --git a/js/readerview.js b/js/readerview.js @@ -89,7 +89,7 @@ var readerView = {
cb(results)
})
},
- showReadingList: function (container, filterText) {
+ showReadingList: function (filterText) {
readerView.searchForArticles(filterText, function (articles) {
searchbarPlugins.reset('bangs')
@@ -130,8 +130,8 @@ regi... | 2 |
diff --git a/lib/cartodb/models/dataview/aggregation.js b/lib/cartodb/models/dataview/aggregation.js @@ -130,6 +130,41 @@ const aggregationQueryTpl = ctx => `
ORDER BY value DESC
`;
+const categoriesCTESqlTpl = ctx => `
+ WITH
+ ${filteredQueryTpl({
+ _isFloatColumn: ctx.isFloatColumn,
+ _query: ctx.query,
+ _column: c... | 5 |
diff --git a/src/pages/home/report/ReportActionCompose.js b/src/pages/home/report/ReportActionCompose.js @@ -215,7 +215,6 @@ class ReportActionCompose extends React.Component {
addAction(this.props.reportID, '', file);
this.setTextInputShouldClear(false);
}}
- onModalHide={this.focus}
>
{({displayFileInModal}) => (
<>
... | 13 |
diff --git a/packages/web/demos/airbeds/src/components/Filters.js b/packages/web/demos/airbeds/src/components/Filters.js @@ -5,6 +5,15 @@ import { leftCol } from '../styles';
export default () => (
<div className={leftCol}>
+ <DateRange
+ dataField="date_from"
+ componentId="DateRangeSensor"
+ title="When"
+ numberOfMo... | 3 |
diff --git a/token-metadata/0x638155F4BD8F85d401Da32498D8866eE39A150B8/metadata.json b/token-metadata/0x638155F4BD8F85d401Da32498D8866eE39A150B8/metadata.json "symbol": "JREX",
"address": "0x638155F4BD8F85d401Da32498D8866eE39A150B8",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/cpu-usage.js b/src/cpu-usage.js */
const os = require("os");
+/* istanbul ignore next */
module.exports = function getCpuUsage(sampleTime = 100) {
return new Promise(resolve => {
const first = os.cpus().map(cpu => cpu.times);
| 8 |
diff --git a/outbound/hmail.js b/outbound/hmail.js @@ -745,6 +745,10 @@ class HMailItem extends events.EventEmitter {
// EHLO command was rejected; fall-back to HELO
return send_command('HELO', mx.bind_helo);
}
+ if (command === 'rset') {
+ // Broken server doesn't accept RSET, terminate the connection
+ return client_... | 9 |
diff --git a/lib/assets/javascripts/locale/en.json b/lib/assets/javascripts/locale/en.json "deprecated-connector": "Deprecated connector.",
"twitter-contact-support": "Please <a href='mailto:support@carto.com'>contact support</a> should you need Twitter data.",
"twitter-how-to-historical": "To get access to historical ... | 2 |
diff --git a/build/karma.cover.config.js b/build/karma.cover.config.js @@ -24,7 +24,7 @@ module.exports = function (config) {
plugins.splice(idx, 1, babel({
plugins: [['istanbul', {
// TileLayerGLRenderer is not testable on CI
- exclude: ['test/**/*.js', 'src/core/mapbox/*.js', 'src/util/dom.js', 'src/renderer/layer/ti... | 3 |
diff --git a/src/scripts/autocomplete.js b/src/scripts/autocomplete.js /*jslint indent: 2, unparam: true, plusplus: true */
-/*global document: false */
+/*global document: false, window: false */
"use strict";
var noop = function () { return undefined; };
@@ -34,11 +34,11 @@ AutoComplete.prototype.addEvents = function... | 1 |
diff --git a/tools/metadata/lib/index.ts b/tools/metadata/lib/index.ts @@ -124,9 +124,9 @@ class TokenMetadata {
tokens.forEach(token => {
if (
- !Object.prototype.hasOwnProperty.call(tokensByAddress, token.symbol)
+ !Object.prototype.hasOwnProperty.call(tokensByAddress, token.address)
) {
- tokensByAddress[token.symbo... | 1 |
diff --git a/redux/articleList.js b/redux/articleList.js @@ -164,15 +164,21 @@ export default createReducer(
.set('edges', payload.get('edges'))
.set(
'firstCursor',
- payload.getIn(['pageInfo', 'firstCursor']) || state.get('firstCursor')
+ payload.getIn(['pageInfo', 'firstCursor']) === undefined
+ ? state.get('firstCu... | 1 |
diff --git a/src/blockchain/cappedMilestones.js b/src/blockchain/cappedMilestones.js @@ -21,6 +21,33 @@ const cappedMilestones = app => {
const m = data[0];
const { from } = await app.getWeb3().eth.getTransaction(txHash);
+ const {
+ PAID,
+ PAYING,
+ CANCELED,
+ NEEDS_REVIEW,
+ REJECTED,
+ IN_PROGRESS,
+ COMPLETED,
+ ... | 8 |
diff --git a/diorama.js b/diorama.js @@ -718,7 +718,7 @@ const _makeOutlineRenderTarget = (w, h) => new THREE.WebGLRenderTarget(w, h, {
const createPlayerDiorama = ({
canvas = null,
objects = [],
- target = null,
+ target = new THREE.Object3D(),
cameraOffset = new THREE.Vector3(0.3, 0, -0.5),
clearColor = null,
clearAl... | 0 |
diff --git a/packages/node_modules/node-red/settings.js b/packages/node_modules/node-red/settings.js @@ -138,7 +138,6 @@ module.exports = {
* - httpNodeMiddleware
* - httpStatic
* - httpStaticRoot
- * - httpStaticCors
******************************************************************************/
/** the tcp port that ... | 2 |
diff --git a/src/components/fields/pretty-select.js b/src/components/fields/pretty-select.js @@ -62,6 +62,7 @@ export default createReactClass({
isAccordion: field.isAccordion,
isAccordionAlwaysCollapsable: field.isAccordionAlwaysCollapsable,
field,
+ id: this.props.id,
onChange: this.onChange,
onAction: this.onBubbleA... | 11 |
diff --git a/tools/utils/src/hashes.ts b/tools/utils/src/hashes.ts */
import * as ethUtil from 'ethereumjs-util'
+import { ethers } from 'ethers'
import { DOMAIN_NAME, DOMAIN_VERSION } from '@airswap/constants'
import { OrderParty, UnsignedOrder, EIP712 } from '@airswap/types'
-const ethers = require('ethers')
-const a... | 2 |
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 "4.0.0">
+<!ENTITY version-java-client "4.0.1">
<... | 12 |
diff --git a/QuestionListsHelper.user.js b/QuestionListsHelper.user.js // @description Adds more information about questions to question lists
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author @samliew
-// @version 3.1
+// @version 3.2
//
// @include https://stackoverflow.com/*
// @include https://s... | 2 |
diff --git a/graveyard.json b/graveyard.json "dateClose": "2013-12-31",
"dateOpen": "2007-11-04",
"description": "Windows Home Server was intended to be a solution for homes with multiple connected PCs to offer file sharing, automated backups, print server, and remote access.",
- "link": "https://it.wikipedia.org/wiki/... | 14 |
diff --git a/lib/utils/screen-manager.js b/lib/utils/screen-manager.js @@ -102,7 +102,6 @@ ScreenManager.prototype.releaseCursor = function () {
if (this.extraLinesUnderPrompt > 0) {
util.down(this.rl, this.extraLinesUnderPrompt);
}
- this.done();
};
ScreenManager.prototype.normalizedCliWidth = function () {
| 2 |
diff --git a/lib/assets/javascripts/dashboard/views/dashboard/content-controller/content-controller-view.js b/lib/assets/javascripts/dashboard/views/dashboard/content-controller/content-controller-view.js @@ -164,7 +164,6 @@ module.exports = CoreView.extend({
const contentFooter = new ContentFooterView({
el: this.$('#c... | 2 |
diff --git a/packages/app/src/components/Sidebar/PageTree/Item.tsx b/packages/app/src/components/Sidebar/PageTree/Item.tsx @@ -112,7 +112,7 @@ const Item: FC<ItemProps> = (props: ItemProps) => {
const [{ isDragging }, drag] = useDrag(() => ({
- type: 'DND_GROUP',
+ type: 'PAGE_TREE',
item: { page },
collect: monitor =>... | 10 |
diff --git a/README.md b/README.md @@ -51,8 +51,8 @@ User documentation is <a href="https://webaverse.notion.site/User-Docs-3a36b223e
## Installation
-**Important note:** This repo uses Git submodules.
-You need to install with the **--recurse-submodules** flag or installation will not work. Copy the code below to clon... | 2 |
diff --git a/source/core/woogeen_base/AVStreamOut.cpp b/source/core/woogeen_base/AVStreamOut.cpp @@ -440,6 +440,10 @@ bool AVStreamOut::addVideoStream(FrameFormat format, uint32_t width, uint32_t he
av_parser_close(parser);
}
+ if (codec_id == AV_CODEC_ID_H265) {
+ par->codec_tag = 0x31637668; //hvc1
+ }
+
return true;... | 12 |
diff --git a/test/server/cards/12-SoW/AsahinaMaeko.spec.js b/test/server/cards/12-SoW/AsahinaMaeko.spec.js @@ -152,7 +152,7 @@ describe('Asahina Maeko', function() {
this.player1.clickCard(this.whisperer);
this.player1.clickPrompt('0');
this.player1.clickPrompt('Conflict');
- expect(this.player1.fate).toBe(p1fate - 1);... | 3 |
diff --git a/nin/backend/compile.js b/nin/backend/compile.js @@ -13,8 +13,6 @@ const stream = require('stream');
const utils = require('./utils');
const walk = require('walk');
-const pngOptimizer = new OptiPng(['-o7']);
-
function moveCursorToColumn(col) {
return '\x1B[' + col + 'G';
@@ -60,6 +58,8 @@ function res(pro... | 4 |
diff --git a/src/main/keyboard/shortcutHandler.js b/src/main/keyboard/shortcutHandler.js @@ -38,6 +38,9 @@ class Keybindings {
registerKeyHandlers (win, acceleratorMap) {
for (const item of acceleratorMap) {
let { accelerator } = item
+ if (accelerator == null || accelerator === '') {
+ continue
+ }
// Regisiter shortc... | 8 |
diff --git a/src/public/disease/Associations.js b/src/public/disease/Associations.js @@ -64,7 +64,7 @@ const DiseaseAssociationsPage = ({ efoId, name }) => {
const [evidence, setEvidence] = useState(null);
const handleIndirectsChange = indirects => {
- setIndirects({ indirects });
+ setIndirects(indirects);
};
const ha... | 12 |
diff --git a/src/js/controller/settings/SaveController.js b/src/js/controller/settings/SaveController.js };
ns.SaveController.prototype.updateSaveToGalleryMessage_ = function (spritesheetSize) {
- if (pskl.app.performanceReportService.hasProblem()) {
+ var saveToGalleryStatus = document.querySelector('.save-online-stat... | 1 |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -15,14 +15,14 @@ jobs:
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- - name: Prepare changes
- run: npm run release
- env:
- GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
- name: Set up git credentials
run: |... | 12 |
diff --git a/package.json b/package.json "dev:reset": "cross-env node .ki-scripts/reset.js",
"postinstall": "npx lerna exec npm install",
"heroku-postbuild": "npx lerna exec npm run build",
- "start": "node api/dist/index.js"
+ "start": "node api/dist/index.js",
+ "start:worker": "node api/dist/index.js --worker"
},
"r... | 0 |
diff --git a/appjs/logicjavascript.js b/appjs/logicjavascript.js @@ -6339,7 +6339,7 @@ function seveneightCalc(){
seven += '7' - input[i];
}
result.innerHTML = "Seven's complement of " + input + " is " + seven + "<br>";
- eight = parseInt(seven) + 1;
+ eight = (parseInt(seven,8) + 1).toString(8);
result.innerHTML = "Se... | 1 |
diff --git a/assets/js/googlesitekit-idea-hub-notice.js b/assets/js/googlesitekit-idea-hub-notice.js @@ -65,11 +65,8 @@ const loadIdeaHubNotices = async ( _global = global ) => {
// We've already shown this notice, so when it's hidden, mark it as shown
// so it doesn't appear again.
if ( shownNotices.includes( noticeKe... | 4 |
diff --git a/docs/api/README.md b/docs/api/README.md @@ -271,7 +271,7 @@ In the following example, we create a simple task `fetchAutocomplete`. We use `t
start a new `fetchAutocomplete` task on dispatched `FETCH_AUTOCOMPLETE` action. However since `throttle` ignores consecutive `FETCH_AUTOCOMPLETE` for some time, we en... | 3 |
diff --git a/src/plots/polar/set_convert.js b/src/plots/polar/set_convert.js @@ -34,7 +34,7 @@ var rad2deg = Lib.rad2deg;
*
* Radial axis coordinate systems:
* - d, c and l: same as for cartesian axes
- * - g: like calcdata but translated about `radialaxis.range[0]`
+ * - g: like calcdata but translated about `radialax... | 0 |
diff --git a/configs/circonus.json b/configs/circonus.json "conversation_id": [
"1139468845"
],
+ "sitemap_urls": [
+ "https://docs.circonus.com/sitemap.xml"
+ ],
+ "js_render": true,
+ "use_anchors": true,
+ "only_content_level": true,
"nb_hits": 11177
}
| 7 |
diff --git a/src/config/streaming.json b/src/config/streaming.json "providers": {
"streamlink": {
"version": "0.2.0",
- "regexp": "^streamlink(?:\\.exe|-script\\.pyw?)? (\\d+\\.\\d+\\.\\d+)(?:$|\\s.*)"
+ "regexp": "^(?:python\\d*-)?streamlink(?:\\.exe|-script\\.pyw?)? (\\d+\\.\\d+\\.\\d+)(?:$|\\s.*)"
},
"livestreamer":... | 7 |
diff --git a/.github/workflows/ci-app-prod.yml b/.github/workflows/ci-app-prod.yml @@ -61,7 +61,7 @@ jobs:
node-version: 16.x
skip-cypress: ${{ contains( github.event.pull_request.labels.*.name, 'dependencies' ) && contains( github.event.pull_request.labels.*.name, 'github_actions' ) }}
cypress-report-artifact-name: Cy... | 12 |
diff --git a/src/node.js b/src/node.js @@ -504,11 +504,14 @@ var _ = Mavo.Node = $.Class({
for (var i = 0; i<collection.length; i++) {
var ind = index + i * direction;
- ind = o.wrap? Mavo.wrap(ind, collection.length) : ind;
+
+ if (o.wrap) {
+ ind = Mavo.wrap(ind, collection.length);
+ }
var item = collection.children... | 1 |
diff --git a/assets/js/modules/idea-hub/components/dashboard/DashboardIdeasWidget/Idea.js b/assets/js/modules/idea-hub/components/dashboard/DashboardIdeasWidget/Idea.js @@ -70,8 +70,6 @@ const Idea = ( { postEditURL, name, text, topics, buttons } ) => {
const handleCreate = useCallback( () => {
setIsProcessing( true );... | 2 |
diff --git a/src/tools/auth0/handlers/branding.ts b/src/tools/auth0/handlers/branding.ts @@ -2,6 +2,7 @@ import DefaultHandler from './default';
import constants from '../../constants';
import log from '../../../logger';
import { Asset, Assets } from '../../../types';
+import { detectInsufficientScopeError } from '../.... | 13 |
diff --git a/webpack.config.js b/webpack.config.js @@ -30,7 +30,7 @@ const ESLintPlugin = require( 'eslint-webpack-plugin' );
const MiniCssExtractPlugin = require( 'mini-css-extract-plugin' );
const TerserPlugin = require( 'terser-webpack-plugin' );
const WebpackBar = require( 'webpackbar' );
-const { DefinePlugin, Pro... | 2 |
diff --git a/src/webview/lib/RecipeWebview.js b/src/webview/lib/RecipeWebview.js @@ -19,6 +19,12 @@ class RecipeWebview {
window.FranzAPI = {
clearCache: RecipeWebview.clearCache,
};
+
+ // fix BrowserView Background issue
+ const styles = document.createElement('style');
+ styles.innerHTML = 'html { background: white;... | 12 |
diff --git a/components/Search/index.js b/components/Search/index.js @@ -185,14 +185,16 @@ class Search extends Component {
let filters = [...this.state.filters].filter(
filter => !(filter.key === 'template' && filter.value === 'front')
)
+ console.log(filterBucketKey, filterBucketValue, selected)
if (selected) {
- fil... | 1 |
diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js @@ -32266,6 +32266,7 @@ module.exports = class bitget extends Exchange {
const timestamp = this.safeInteger (item, 'cTime');
const bizType = this.safeString (item, 'bizType');
let direction = undefined;
+ if (bizType !== undefined) {
const parts = bizType.split (... | 13 |
diff --git a/bake.html b/bake.html (async () => {
const q = parseQuery(location.search);
if (q.u) {
+ const w = 30;
+ const extents = parseExtents(q.e) || new THREE.Box3(
+ new THREE.Vector3(-w/2, 0, -w/2),
+ new THREE.Vector3(w/2, w, w/2)
+ );
+
const app = new App();
await app.waitForLoad();
// window.object = object... | 0 |
diff --git a/scenes/gunroom.scn b/scenes/gunroom.scn 4
]
},
- {
- "start_url": "https://webaverse.github.io/eyeblaster/",
- "position": [
- 0,
- 0,
- 0
- ]
- },
{
"position": [
1,
| 2 |
diff --git a/README.md b/README.md @@ -115,7 +115,7 @@ too big. If you don't see the language you need in the ["Common" section][5],
it can be added manually:
```html
-<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/languages/go.min.js"></script>
+<script src="//cdnjs.cloudflare.com/ajax/libs/highlight... | 1 |
diff --git a/src/navigation/restaurant/components/DatePickerHeader.js b/src/navigation/restaurant/components/DatePickerHeader.js import React, { Component } from 'react'
import { StyleSheet, View, TouchableOpacity } from 'react-native'
import { Col, Row, Grid } from 'react-native-easy-grid'
-import { Icon, Text } from ... | 7 |
diff --git a/src/node.js b/src/node.js @@ -85,6 +85,13 @@ var _ = Mavo.Node = class Node {
}
}
+ // Handle dynamic mv-storage on Mavo nodes (Fix for #576)
+ if (this.element.hasAttribute("mv-storage")) {
+ this.storageObserver = new Mavo.Observer(this.element, "mv-storage", record => {
+ this.storage = this.element.get... | 9 |
diff --git a/app/components/Exchange/OrderBook.jsx b/app/components/Exchange/OrderBook.jsx @@ -403,6 +403,12 @@ class OrderBook extends React.Component {
});
}
+ componentWillReceiveProps(nextProps) {
+ this.setState({
+ autoScroll: nextProps.autoScroll
+ });
+ }
+
shouldComponentUpdate(nextProps, nextState) {
if (
thi... | 13 |
diff --git a/common/lib/transport/connectionmanager.js b/common/lib/transport/connectionmanager.js @@ -1507,6 +1507,7 @@ var ConnectionManager = (function() {
var onHeartbeat = function (responseId) {
if(responseId === id) {
+ transport.off('heartbeat', onHeartbeat);
clearTimeout(timer);
var responseTime = Utils.now() ... | 1 |
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -67,6 +67,7 @@ const animationsSelectMap = {
'magic standing idle.fbx': new THREE.Vector3(0, Infinity, 0),
'Skateboarding.fbx': new THREE.Vector3(0, Infinity, 0),
'Throw.fbx': new THREE.Vector3(0, Infinity, 0),
+ 'Hip Hop Dancing.fbx': new THREE.Vector3(0, Infinit... | 0 |
diff --git a/test/map/MapCameraSpec.js b/test/map/MapCameraSpec.js @@ -545,7 +545,7 @@ describe('Map.Camera', function () {
it('should generate dom css matrix', function () {
map.setPitch(75);
map.setBearing(45);
- expect(maptalks.Util.join(map.domCssMatrix)).to.be.eql('31.819805153394643,-8.235571585149868,0.683012707... | 1 |
diff --git a/react/features/invite/components/dial-in-summary/web/DialInSummary.js b/react/features/invite/components/dial-in-summary/web/DialInSummary.js import React, { Component } from 'react';
import { translate } from '../../../../base/i18n';
+import { doGetJSON } from '../../../../base/util';
import ConferenceID ... | 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.